当前位置:   article > 正文

MongoDB:nodejs the options [safe] is not supported_node: studio is not supported in node_options

node: studio is not supported in node_options
the options [safe] is not supported

修改为 :

  1. MongoClient.connect(db_url, { useNewUrlParser: true }, function(err, db) {
  2. assert.equal(null, err);
  3. assert.ok(db != null);
  4. //acl_id
  5. db.collection("numbs").findAndModify({ _id: seq_name }, [], { $inc: { seq: 1 } }, { new: true }, function(err, result) {
  6. if (err) {
  7. logger.error(err);
  8. return cb(err);
  9. }
  10. var seq = JSON.stringify(result.value.seq) * 1;
  11. logger.debug('增加的序列为: ' + seq);
  12. next(seq);
  13. db.close();
  14. });
  15. });

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/108693
推荐阅读
相关标签
  

闽ICP备14008679号