现在的代码是这样:
db.collection('join').where({
_openid: openId,
is_reply: true,
is_agree: true,
is_opinion: false
}).count().then(function(res) {
console.log('result')
console.log(res.total)
})
但是发现根本不会进入then()内部
正确的写法应该是什么?
框架类型 | 问题类型 | 终端类型 | AppID | 基础库版本 |
---|---|---|---|---|
小程序 | 需求 | 工具 | wx66703fbe4a5323e8 | 2.3.0 |
1 个回答
exports.main = async(event, context) => {
const
count =await countdb.collection(
'join'
).where({
_openid: openId,
is_reply:
true
,
is_agree:
true
,
is_opinion:
false
}).count();
return
{total: count.total}
}