我无法弄清楚这个错误的含义
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
}
});
我认为当我更新 stats 对象 $inc 计数时可能会发生这种情况,以便 stats 可以得出类似此更新的结果
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
);