0
私はmongodbとsails js 0.12.14を使う。私は、ドキュメントを取得しようとした後、文書がMongoが挿入後に文書を見つける
Products.create(product).exec(function(err, createdProduct) {
Products.find({_id : createdProduct.id}).exec(function(err, foundProductAfterCreate) {
console.log(foundProductAfterCreate);
})});
空で文書を挿入ドキュメントが使用できない理由を誰も説明できますか?
更新: これは私のために正しいコードです...
Products.create(product).exec(function(err, createdProduct) {
Products.find({_id : createdProduct[0].id}).exec(function(err, foundProductAfterCreate) {
console.log(foundProductAfterCreate);
})});
それは '_id:createdProduct._id'ではいけません – wrangler
また、createdProductによって返された値をチェックしてください... – paulogdm