我的命令是这样的:
db.item.remove()
db.item.update({_id:{$in:['A1','A2']}},{$inc:{count:1}},{multi: true, upsert: true})
我想要的结果应该是
db.item.find() -->
{_id: 'A1', count: 1}
{_id: 'A2', count: 1}
但实际上是:
{_id: ObjectId(xxx), count: 1}
{_id: ObjectId(xxx), count: 1}
似乎Upsert不能自动使用查询数组中的val作为新文档的_id,有没有办法达到我的目的?