像下面這個例子,如果我要繼續向lists數組添加或刪除文檔,我該怎麼操作?謝謝!
{
"_id" : ObjectId("590a77315a7ae88824b296cf"),
"user" : "yejia@qq.com",
"password" : "5475442343",
"lists" : [
{
"create_at" : "1234",
"update_at" : "1234",
"title" : "yejia",
"list_id" : 123
}
]
}
黄舟2017-05-17 10:05:17
pull和push,和MongoDB Node.JS Driver一樣的。
參考下面的用法:
Model.update({ }, {’$pull’:{ } } );
Model.update({ }, {’$push’:{ } } );
供參考
Love MongoDB! Have Fun!
Mongoose的pull和push的語法參考如後:
var schema = new mongoose.Schema({ user: 'string', password: 'string', lists: [ {create_at: 'string', update_at: 'string', title: 'string', list_id: 'number'}]});
var User = mongoose.model('User', schema,'test');
//删除
User.update({"user" : "yejia@qq.com"},
{'$pull':{ lists : { list_id : 123 }}}, function(err, data){
if(err) {
console.log(err);}
console.log(data);
});
//添加
User.update({"user" : "yejia@qq.com"},
{'$push':{ lists : { create_at: '111', update_at: '222', title: 'test', list_id: 8888}}}, function(err, data){
if(err) {
console.log(err);}
console.log(data);
});
//打印结果
User.find({},function(err,result){
console.log(result);
});