search

Home  >  Q&A  >  body text

node.js - mongoose中数据不存在则插入怎么写

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

阿神阿神2786 days ago353

reply all(2)I'll reply

  • ringa_lee

    ringa_lee2017-04-17 15:40:36

    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...

    reply
    0
  • 天蓬老师

    天蓬老师2017-04-17 15:40:36

    Model.update({user:{"$in":["xxxx","xxxxxx"]}},{"$set":{}},{"upsert":true,},function (err,result){});

    reply
    0
  • Cancelreply