慕工程7372550
2020-11-20 16:01
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
wx.cloud.callFunction({
name:"movielist",
data:{
start:0,
count:3
}
}).then(res=>{
this.setData({
movieList:this.data.movieList.concat(JSON.parse(res.result).subject_collection_items)
})
}).catch(err=>{
console.log(err)
})
},
上面的代码没有问题。
传不过去是什么意思呢?需要检查下云函数代码是否正确。
接口已经失效了
轻松入门微信小程序与云开发
64553 学习 · 1742 问题
相似问题