小程序
小游戏
企业微信
微信支付
扫描小程序码分享
一直显示我的id未定义这个该怎么改呀?我不知该在哪里加什么东西,我是按照B站上黑马的视频第54P做的,反复编译几次都没办法。。。一直没办法从服务器获取数据下来。就是这个https://www.escook.cn/categories/1/shops
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
贴一下完整代码
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
data: {
query: {},
shopList: [],
page: 1,
pageSize: 10,
total: 0,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
this.setData({
query: options
})
this.getShopList()
getShopList(){
wx.request({
url: `https/www.escook.cn/categories/${this.data.query.id}/shops`,
method: "GET",
data:{
_page: this.data.page,
_limit: this.data.pageSize
success: (res) => {
console.log(res)
shopList: [...this.data.shopList, ...res.data],
total: res.header['X-Total-Count'] - 0
}
* 生命周期函数--监听页面初次渲染完成
onReady() {
wx.setNavigationBarTitle({
title: this.data.query.title,
console.log(this.data.query)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
贴一下完整代码
data: {
query: {},
shopList: [],
page: 1,
pageSize: 10,
total: 0,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
this.setData({
query: options
})
this.getShopList()
},
getShopList(){
wx.request({
url: `https/www.escook.cn/categories/${this.data.query.id}/shops`,
method: "GET",
data:{
_page: this.data.page,
_limit: this.data.pageSize
},
success: (res) => {
console.log(res)
this.setData({
shopList: [...this.data.shopList, ...res.data],
total: res.header['X-Total-Count'] - 0
})
}
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
wx.setNavigationBarTitle({
title: this.data.query.title,
})
getShopList(){
console.log(this.data.query)
wx.request({