赞
踩
the options [safe] is not supported
修改为 :
- MongoClient.connect(db_url, { useNewUrlParser: true }, function(err, db) {
- assert.equal(null, err);
- assert.ok(db != null);
- //acl_id
- db.collection("numbs").findAndModify({ _id: seq_name }, [], { $inc: { seq: 1 } }, { new: true }, function(err, result) {
- if (err) {
- logger.error(err);
- return cb(err);
- }
- var seq = JSON.stringify(result.value.seq) * 1;
- logger.debug('增加的序列为: ' + seq);
- next(seq);
- db.close();
- });
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。