收藏
回答

云函数中怎么获取collection.count的结果?

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 需求 工具 wx66703fbe4a5323e8 2.3.0

现在的代码是这样:

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()内部

正确的写法应该是什么?


最后一次编辑于  2018-10-01
回答关注问题邀请回答
收藏

1 个回答

  • 半寸灰
    半寸灰
    2018-10-02
    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}
    }


    2018-10-02
    有用
    回复
登录 后发表内容