ネストしたオブジェクトをマングースで更新しようとしています。私は要求を受信したときしかし、それは次のようになります。ネストしたオブジェクトをマングースで更新する
{
'example[apple]': 'false',
'example[pear]': 'false',
'example[banana]': 'false',
'example[orange]': 'false',
}
私のモデルは次のようになります。
email: {
type: String,
index:true,
unique: true,
},
example: {
apple: {type:Boolean, default: true},
banana: {type:Boolean, default: true},
pear: {type:Boolean, default: true},
orange: {type:Boolean, default: true}
}
そして、私はこのようなルックスを送信しています対象:
var formData = {
example: {
apple: false,
banana: false,
pear: false,
orange: false
}
}
何私は間違っている?
となりますか?要求を生成して投稿しているのは誰ですか?それはあなたですか?あなたのリクエストの構造とマングースモデルは、互いに整列していません。 –
@satishchennupati私はリクエストを生成し掲示しています。モデルはどのように一致させるべきですか? – dmonaldo