发起get请求
调用微信小程序提供的 wx.request() 方法,可以发起 GET 数据请求,示例代码如下:
wx.request({
url: 'https://www.escook.cn/api/color',
method:'GET',
success: ({data: res}) => {
this.setData({
colorList: [...this.data.colorList,...res.data]
})
另外:(发起post请求就是把method改为post)
在页面刚加载时请求数据
在很多情况下,我们需要在页面刚加载的时候,自动请求一些初始化的数据。此时需要在页面的 onLoad 事件中调用获取数据的函数,示例代码如下:
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
this.getColors()
},