标签: javascript node.js mongodb mongoose mongodb-query
当我运行以下代码从数组中删除($pull)元素时,它不会删除该项。对我可能缺少什么的想法?
$pull
App.update( { $and : [{name : "appName"} , { _id : { $in : appIds} }]}, { $pull : { intent_ids : intent.id } }, // <<--- THIS DOESN'T WORK function(err) if (err) throw err; res.send(200); });