finish: function () { var that = this; wx.request({ url: "https://www.easy-mock.com/mock/596257bc9adc231f357c4664/restaurant/filter", method: "GET", success: function (res) { that.setData({ restaurant: res.dat
时间: 2024-04-02 14:34:44 浏览: 76
这是一个小程序中的一个函数,用于发送 HTTP 请求获取数据并更新页面。在这个例子中,函数首先获取了当前页面实例对象 this,并将其保存在变量 that 中,然后使用 wx.request 发送了一个 GET 请求,请求地址为 https://www.easy-mock.com/mock/596257bc9adc231f357c4664/restaurant/filter。请求成功后,服务器会返回一个响应对象,其中包含了请求的数据。在 success 回调函数中,通过调用 this.setData 方法来更新页面中名为 restaurant 的数据,将其设置为响应对象的 data 属性值。示例代码如下:
```javascript
Page({
data: {
restaurant: []
},
finish: function () {
var that = this;
wx.request({
url: "https://www.easy-mock.com/mock/596257bc9adc231f357c4664/restaurant/filter",
method: "GET",
success: function (res) {
that.setData({
restaurant: res.data
})
}
})
}
})
```
上面的代码中,定义了一个名为 restaurant 的数据对象,其中初始值为空数组。在 finish 函数中,通过调用 wx.request 方法发送了一个 GET 请求,请求成功后通过调用 this.setData 方法将响应对象的 data 属性值赋值给 restaurant 数据对象,从而更新页面中的数据。
阅读全文