List.findOne({name:tagname},function(err,fidlist){
if(!err){
if(!fidlist){
console.log("doesnt exist");
}
else {
console.log("exist");
}
}
});
如何修复显示Model.findOne()不再接受回调的代码,有人能帮我吗?
List.findOne({name:tagname},function(err,fidlist){
if(!err){
if(!fidlist){
console.log("doesnt exist");
}
else {
console.log("exist");
}
}
});
如何修复显示Model.findOne()不再接受回调的代码,有人能帮我吗?
1条答案
按热度按时间ao218c7q1#
可接受的答案可以帮助您更好地理解:Mongoose - What does the exec function do?
要获得与
exec()
相同的代码功能,可以这样做: