@nswbmw 你的github上第六章好像有问题
https://github.com/nswbmw/N-blog/wiki/第6章–实现留言功能
collection.update({
"name": name,
"time.day": day,
"title": title
}, {
$push: {"comments": comment}
} , function (err, result) {
mongodb.close();
callback(null);
});
这样插不入,是不是要用findAndModify
1 回复
我在学第六章也是,遇到cannot read property foreach of undefined这个错误? 你呢?