为什么db.collection.count出来的total出来后就没了?
db.collection(‘comment’).where({
messageid: newmessage._id
}).count().then(
res=> {
others = res.total;
console.log(others);
}
)
然后再将others赋值给其它data就没有用
db.collection(‘comment’).where({
messageid: newmessage._id
}).count().then(
res=> {
others = res.total;
console.log(others);
}
)
然后再将others赋值给其它data就没有用