使用 loopback.js 和 MongoDB 自动递增

auto-increment using loopback.js and MongoDB

我想使用环回自动增加 mongodb 文档数量。

我在mongo

中做了函数
 function getNextSequence(name) {
   var ret = db.counters.findAndModify(
          {
            query: { _id: name },
            update: { $inc: { seq: 1 } },
            new: true
          }
   );

   return ret.seq;
}


db.tweet.insert(
{
   "_id" : getNextSequence("userid"),
  "content": "test",
  "date": "1",
  "ownerUsername": "1",
  "ownerId": "1"
}
)

正在 mongo shell.

工作

但是,当我使用 loopback.js 浏览器 (http://localhost:3000/explorer/) 插入时,它不起作用。 显示 400 错误 (SytaxError) 代码。

我不能在环回休息中使用 mongo 函数 API ?

我认为问题是这一行中的引号 getNextSequence("userid"),

创建具有属性 valuecollection

的集合 counters
{
  "name": "counters",
  "base": "PersistedModel",
  "idInjection": true,
  "options": {
    "validateUpsert": true
  },
  "properties": {
      "type": "number",
      "collection": "string"

  },
  "validations": [],
  "relations": {},
  "acls": [
    {
      "accessType": "*",
      "principalType": "ROLE",
      "principalId": "$everyone",
      "permission": "ALLOW"
    }
  ],
  "methods": []
}

现在假设你的自增集合名称tweets.

将此值插入 counters

{
  "value" : 0, 
  "collection" : "tweet"
}

Now common/models/tweet.js

tweet.observe('before save', function (ctx, next) {

        var app = ctx.Model.app;

        //Apply this hooks for save operation only..
        if(ctx.isNewInstance){
            //suppose my datasource name is mongodb
            var mongoDb = app.dataSources.mongodb;
            var mongoConnector = app.dataSources.mongodb.connector;
            mongoConnector.collection("counters").findAndModify({collection: 'tweet'}, [['_id','asc']], {$inc: { value: 1 }}, {new: true}, function(err, sequence) {
                if(err) {
                    throw err;
                } else {
                    // Do what I need to do with new incremented value sequence.value
                    //Save the tweet id with autoincrement..
                    ctx.instance.id = sequence.value.value;

                    next();

                } //else
            });
        } //ctx.isNewInstance
        else{
            next(); 
        }
    }); //Observe before save..

I would love to add 1 more point to Robins Answer,you can add upsert:true so that it automatically creates the document if it doesn't exist

tweet.observe('before save', function (ctx, next) {

    var app = ctx.Model.app;

    //Apply this hooks for save operation only..
    if(ctx.isNewInstance){
        //suppose my datasource name is mongodb
        var mongoDb = app.dataSources.mongodb;
        var mongoConnector = app.dataSources.mongodb.connector;
        mongoConnector.collection("counters").findAndModify({collection: 'tweet'}, [['_id','asc']], {$inc: { value: 1 }}, {new: true,upsert:true}, function(err, sequence) {
            if(err) {
                throw err;
            } else {
                // Do what I need to do with new incremented value sequence.value
                //Save the tweet id with autoincrement..
                ctx.instance.id = sequence.value.value;

                next();

            } //else
        });
    } //ctx.isNewInstance
    else{
        next(); 
    }
}); //Observe before save..

您可以为环回 4 执行此示例中类似的操作

let last_record = await this.testRepository.findOne({order: ['id DESC']});
if(last_record) invoice.id = last_record.id+1;

这将使用 属性:

生成您的模型
@property({
    type: 'number',
    id: true,
    default: 1,
    generated: false
  })
  id: number;

希望对您有所帮助,如果还有其他代码,请写信给我。谢谢

如果你想在环回方法中直接使用 MongoDB 运算符,你需要启用选项“allowExtendedOperators”,你可以在每个模型或数据源级别这样做(将适用于所有使用数据源的模型)。

datasources.json:

  "MongoDs": {
    "host": "127.0.0.1",
    "port": 27017,
    "url": "mongodb://localUser:MYPASSWORD!@127.0.0.1:27017/test-database",
    "database": "test-database",
    "password": "MYPASSWORD!",
    "name": "MongoDs",
    "user": "localUser",
    "useNewUrlParser": true,
    "connector": "mongodb",
    "allowExtendedOperators": true
  },