You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git/scr/论坛/cloud/love_infoCount/index.js

21 lines
443 B

// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
// 云函数入口函数
exports.main = async (event, context) => {
//1.统计评论表
try{
return await db.collection('love_comment').aggregate().lookup({
from:'love_answer',
localField: '_id',
foreignField: 'fid',
as: 'result'
}).match({
tid:event.tid
}).count().end()
}catch(e){
}
}