云函数中的方法:
// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
// 云函数入口函数
exports.main = async (event, context) => {
return await cloud.database().collection('playlist') //云数据库集合名称
.skip(event.start)
.limit(event.count) //每次查询对应的总数
.orderBy('Time','desc') //逆序排序
.get()
.then((res)=>{
return res
})
}
在小程序中调用:
_getList() { //自己定义的方法
wx.cloud.callFunction({
name:' yunName ', //云函数的名称
data:{
//对应云函数定义的参数
start:this.data.number ,
count:LIMIT
}
}).then((res)=>{
console.log(res)
})
},