您正在尝试插入一个字符串数组 - 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);
}
}
我已经在您询问如何转换此字符串的其他问题中放置了指向此问题/答案的指针。