1

请注意,我对 mongo 相当陌生,尤其是对使用 node/js 非常陌生。

我正在尝试编写一个查询来插入新文档或更新我的集合中已有的文档。

建议的集合结构是:

{ _id: xxxxxxx, ip: "xxx.xxx.xxx.xxx:xxxxxx", date: "xx-xx-xx xxxx" }

请注意,我的意图是为 _id 而不是内部 ObjectId 存储一个固定长度的 int (这可能/被认为是不好的做法吗?)。int 保证是唯一的并且来自另一个来源。

var monk = require('monk');
var db = monk('localhost:27017/cgo_schedule');

var insertDocuments = function(db, match) {
    var db = db;
    var collection = db.get('cgo_schedule');
    collection.findAndModify(
      {
        "query": { "_id": match.matchId },
        "update": { "$set": { 
            "ip": match.ip,
            "date": match.date
            },
        "$setOnInsert": {
          "_id": match.matchId,
        }},
        "options": { "new": true, "upsert": true }
      },
      function(err,doc) {
        if (err) throw err;
        console.log( doc );
      }
  );
}

然而,这根本不起作用。它不会向数据库中插入任何内容,但也不会出错,所以我不知道我做错了什么。

输出(对于console.log (doc))为空。

我究竟做错了什么?

4

1 回答 1

3

Monk 文档没有多大帮助,但根据源代码,该options对象必须作为单独的参数提供。

所以你的电话应该是这样的:

collection.findAndModify(
    {
        "query": { "_id": match.matchId },
        "update": { 
            "$set": { 
                "ip": match.ip, 
                "date": match.date 
            }
        }
    },
    { "new": true, "upsert": true },
    function(err,doc) {
        if (err) throw err;
        console.log( doc );
    }
);

请注意,我删除了该$setOnInsert部分,因为_id它始终包含在带有 upsert 的插入件中。

于 2015-07-21T03:14:16.720 回答