0

给定以下数组:

arr = ["{'myId': 'myVal1'}","{'myId': 'myVal2'}"]

我可以一个一个地插入项目,例如

db.collection.insert(arr[0])

但是当我尝试插入整个数组时它失败了(就像它在http://docs.mongodb.org/manual/reference/method/db.collection.insert/中所说的那样)

db.collection.insert(arr)
Error: not an object src/mongo/shell/collection.js:179

我正在使用 MongoDB 2.2.4

我怎样才能使这项工作?

4

1 回答 1

1

您正在尝试插入一个字符串数组 - mongo 需要一个 json 文档数组。

"{'foo':'bar'}"是一个字符串。
{'foo':'bar'}是一个对象 - 一个带有一个键值对的 json 文档。

在您看来,插入成功了

db.collection.insert("{'foo':'bar'}")但它并没有像你想象的那样做。

> db.collection.findOne()
{
    "_id" : ObjectId("51941c94c12b0a7bbd416430"),
    "0" : "{",
    "1" : "'",
    "2" : "f",
    "3" : "o",
    "4" : "o",
    "5" : "'",
    "6" : ":",
    "7" : "'",
    "8" : "b",
    "9" : "a",
    "10" : "r",
    "11" : "'",
    "12" : "}",
    "trim" : function __cf__12__f__anonymous_function() {
    return this.replace(/^\s+|\s+$/g, "");
},
    "ltrim" : function __cf__13__f__anonymous_function() {
    return this.replace(/^\s+/, "");
},
    "rtrim" : function __cf__14__f__anonymous_function() {
    return this.replace(/\s+$/, "");
},
    "startsWith" : function __cf__15__f__anonymous_function(str) {
    return this.indexOf(str) == 0;
},
    "endsWith" : function __cf__16__f__anonymous_function(str) {
    return (new RegExp(RegExp.escape(str) + "$")).test(this);
}
}

我已经在您询问如何转换此字符串的其他问题中放置了指向此问题/答案的指针。

于 2013-05-15T23:37:10.917 回答