Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

nodejs中mongoose的save方法报错

$
0
0

我按照mongoose官网上的步骤,新建了model, 如下: var bookInfoSchema = new Schema({ bookName: String, author: String, updateDate: String, updateChapter: String, description: String, chapterList: [{ chapterName: String, chapterHref: String }] }); 调用save方法的时候报如下的错误Mongoose: mpromise (mongoose’s default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html。按照给定网址上的信息尝试了一下,各种报错。在测试中发现当chapterList中内容过多时会报以上的错误,而较少时则不会。 各位大神帮忙,万分感激。


Viewing all articles
Browse latest Browse all 14821

Trending Articles