mongoose $ pull从数组中删除元素

时间:2016-01-12 08:20:00

标签: javascript node.js mongodb mongoose mongodb-query

当我运行以下代码从数组中删除($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);
});

0 个答案:

没有答案