我无法弄清楚这个错误意味着什么
LEFT_SUBFIELD仅支持Object:stats not:6
当我插入我的个人资料集合时,似乎正在发生这种情况。我正在使用mongoose.js。我们在stats属性中插入每个类别的帖子计数,例如
stats: {category:count, category2: count2}.
这是我的架构
var ProfileSchema = new Schema({
uname: {
type: String,
required: true,
index: true,
unique: true
},
fname: String,
lname: String,
stats: {
type:{},
"default":{},
required:true
},
created: {
type:Date,
required:true,
"default":Date.now
}
});
我认为当我更新统计对象$ inc count时可能会发生这种情况,以便统计数据可以出现类似此更新的内容
db.status.update({_id:xyz}, {$inc: { stats.foo : 1, stats.bar:1}})
这是我的猫鼬代码
var tags = ["comedy", "action", "drama"];
//also adding the postId to the posts collection of profile
var updateCommand = {$push: {posts: post._id}};
var stats = {};
for (var i = tags.length - 1; i >= 0; i--){
stats["stats." + tags[i].toString()] = 1;
};
updateCommand.$inc = stats;
Profile.update(
{uname: uname},
updateCommand,
{safe:true, upsert:true},
callback
);
答案 0 :(得分:24)
如果您尝试更新非对象的子文档,也会发生这种情况。
> db.test.insert({_id: 10240292, object: 'some string'})
> db.test.update({_id: 10240292}, {$set: {'object.subkey': 'some string'}})
LEFT_SUBFIELD only supports Object: object not: 2
也许这不是你的情况,但它可以帮助那些搜索此错误的人。
答案 1 :(得分:1)
你可能会碰到这个:
https://jira.mongodb.org/browse/SERVER-2651
或
https://jira.mongodb.org/browse/SERVER-5227
两者都已在2.1 dev分支中修复,但尚未(尚未)向后移植到2.0
这里有一个关于类似问题的讨论:
https://groups.google.com/forum/?fromgroups#!topic/mongodb-user/VhjhcyEdbNQ
基本上它归结为这样一个事实,即你可能会传递一个空键作为更新的一部分,需要避免。
答案 2 :(得分:0)
db.collection('fs.files').update({_id: Object_id}, {$set: {'metadata': {"foo" : "bar"}}}