に挿入し、私のマングーススキーマです:次のようにドキュメントはここでマングース
var DealSchema = new Schema({
deal:{
dealid:{
type: String,
require: true,
unique: true,
},
title: String,
},
// Embedded sub-document
details: {
detail: String,
price: Number // USE: deal.details.price
}
})
私のinsert文は次のとおりです。
db.deals.insert({
deal.dealid: '1',
deal.title: 'deal',
details.detail: 'Free Food',
details.price: 200
})
私は取得していますエラー:
SyntaxError: missing : after property id @(shell):2:4
わからないものを、このエラーの意味 - どうすれば修正できますか?
ありがとうございました。私は両方の方法を学びました。正しいjsonの方法とdot(。)メソッドの埋め込み文書。 – impossible