微信在线答题小程序,基于云开发搭建
const db = wx.cloud.database()
const app = getApp()
Page({
data: {
},
//获取所有题目类型
onLoad() {
this.getCurrentDate()
this.getBannerList()
const $ = db.command.aggregate
db.collection('tiku_questions').aggregate()
.group({
_id: '$type',
num: $.sum(1)
}).end().then(res => {
console.log('题目类型', res)
this.setData({
list: res.list
})
})
},
getCurrentDate(){
var now = new Dat
2022-09-12 19:05:24
1.51MB
答题
1