返り値:エラーなしで空の配列を返します.
1190 ワード
返り値: mongoose populate ()はエラーのない空の配列を返します。
Aug 17 ' 16
17
私は、それが働くという私の小さい研究の間、それを見つけました:User
.findById(req.payload._id)
.populate({
path: 'hero.upgrades',
model: 'Upgrade'
})
.exec(function (err, user) {
if (err){
console.log(err);
} else {
res.status(200).json(user);
console.log("success");
}
});
}
ユーザがネストしたオブジェクト表記法242479142をhero.upgrades
メソッドに与えるとき、それはまるでマングースです.
Open Full Answer
Reference
この問題について(返り値:エラーなしで空の配列を返します.), 我々は、より多くの情報をここで見つけました
https://dev.to/rnagarajan96/answer-mongoose-populate-returns-empty-array-with-no-errors-n9a
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
User
.findById(req.payload._id)
.populate({
path: 'hero.upgrades',
model: 'Upgrade'
})
.exec(function (err, user) {
if (err){
console.log(err);
} else {
res.status(200).json(user);
console.log("success");
}
});
}
Reference
この問題について(返り値:エラーなしで空の配列を返します.), 我々は、より多くの情報をここで見つけました https://dev.to/rnagarajan96/answer-mongoose-populate-returns-empty-array-with-no-errors-n9aテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol