Page({ onl oad:function(){ // 在onLoad中调用发送请求的函数 this.getProList(); } getProList:function(){ var self=this; // 在这里向服务端发送请求 wx.request({ url:"", method:"GET", success:function(res){ // 数据的赋值写在setData()方法里 self.setData({ proList:res.data }) } }) } })
2024-01-12 22:07:40
Page({ onl oad:function(){ // 在onLoad中调用发送请求的函数 this.getProList(); } getProList:function(){ var self=this; // 在这里向服务端发送请求 wx.request({ url:"", method:"GET", success:function(res){ // 数据的赋值写在setData()方法里 self.setData({ proList:res.data }) } }) } })