node.js - mongoose中数据不存在则插入怎么写
阿神
阿神 2017-04-17 15:38:36
0
2
352

添加一组数据有个user字段不允许重复,要检查没此字段时插入,有的话就跳过。
这段要怎么写呢?
翻find()用法好像没看到,能在没找到自动执行的方式。

阿神
阿神

闭关修行中......

reply all(2)
左手右手慢动作

Use the findOneAndUpdate method, and set upsert in the third parameter to true.

UserModel.findOneAndUpdate({_id: "asdasdadasd"}, req.newData, {upsert:true}, function(err, doc){});

http://stackoverflow.com/ques...
http://mongoosejs.com/docs/ap...

Peter_Zhu
Model.update({user:{"$in":["xxxx","xxxxxx"]}},{"$set":{}},{"upsert":true,},function (err,result){});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template