MongooseJSで実行されているmongodbコレクションについて考えてみます。
サンプルコード:
Person.where('uid').equals(19524121).select('name').exec(function(err, data){
// Here I can get the data correctly in an array.
console.log(JSON.stringify(data));
data[0].name = "try to save me now"; // Select the first item in the array
data[0].save(); // Object #<Promise> has no method 'save'.
}
エラー-カントはこれを修正する方法を見つけているようです。
オブジェクト#<Promise>にはメソッド'save'がありません。
私はなぜこれが起こっているのか少し混乱しています、そして私はかなり研究しました、そしてこれに対する直接の答えを見つけることができないようです。