次のようなスキーマとオブジェクトがあるとします。
var documentSchema = new mongoose.Schema({
simple: { type: String },
nested: {
value: { type: Number }
}
};
次に、次のものとどちらを使用する必要があるかの違いは何ですか?
console.log( document.nested.value );
console.log( document.get('nested').value );
console.log( document.get('nested.value') );
それらはすべて同じ結果を生成します。私は使用する必要があると思いますget()
が、誰かが理由を説明できますか?