アイテムのIDやアイテムのアイテムのステータスなど、複数のものを見つけたいと考えています。 しかし、私が偽になるたびに。 Node.jsコード:nodejsのmongoDBから複数のアイテムを検索
app.post('/product', function (req, res) {
var collection = req.db.get('itemslist');
var id = req.body.id;
var status = req.body.status;
collection.findOne({id: id, status: status}, function(e, doc){
console.log(id, status);
if (doc == true){
res.send('true');
}
else {
res.send('false');
}
});
});
どこが間違っていますか?
'doc'はドキュメントであり、ブール値ではありません。 if(!doc){res.send( 'false'); } else {res.send( 'true');} –
それは働いた。助けてくれてありがとう。私の質問に答える私はそれを受け入れるだろう。 –
また、この 'doc'のことを説明してください。 –