老师,取不到数据,这是什么原因呢
onload函数
onLoad: function (options) {
wx.cloud.callFunction({
name : ‘music’,
data : {
start : this.data.playlist.length,
count : MAX_LIMIT
}
}).then((res) => {
console.log(res)
})
},
视频里result是data,15条数据,我的是null
云函数
exports.main = async (event, context) => {
n = await db.collection(‘playlist’)
.skip(event.start)
.limit(event.count)
// .orderBy(‘createTime’,‘desc’)
.get()
.then((res) => {
return res
})
}
测试时有一个现象是,如果云函数稍作修改,能获取到数据
exports.main = async (event, context) => {
n = await db.collection(‘playlist’)
.skip(event.start)
.limit(event.count)
// .orderBy(‘createTime’,‘desc’)
.get()
return n
}
这是什么原因呢