上传者: wujiequ
|
上传时间: 2022-09-12 19:05:24
|
文件大小: 1.51MB
|
文件类型: RAR
微信在线答题小程序,基于云开发搭建
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