このエラーの意味がわかりません
LEFT_SUBFIELD は Object: stats not: 6 のみをサポートします
プロファイル コレクションに挿入しているときに発生しているようです。私はmongoose.jsを使用しています。統計プロパティの各カテゴリの投稿数を挿入しています。
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 カウントを更新しているときに発生する可能性があると思うので、統計はこの更新のようなものになる可能性があります
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
);