微信小程序put请求传参
时间: 2023-09-16 18:08:00 浏览: 430
在微信小程序中,使用wx.request()方法发送PUT请求时,需要在请求的options参数中设置method为"PUT",同时在data参数中传入请求参数。例如:
```javascript
wx.request({
url: 'https://example.com/api',
method: 'PUT',
data: {
param1: 'value1',
param2: 'value2'
},
success: function(res) {
console.log(res.data);
}
})
```
在这个例子中,我们将param1和param2作为请求参数通过PUT方法发送给https://example.com/api。在成功回调函数中可以获取到服务器返回的数据。
相关问题
微信小程序Put请求传参
微信小程序的Put请求传参需要使用wx.request方法,并在options参数中设置method为"PUT",同时在data参数中传递需要传递的参数。
示例代码如下:
```javascript
wx.request({
url: 'https://example.com/api/user/1',
method: 'PUT',
data: {
name: 'John',
age: 30
},
success(res) {
console.log(res.data)
}
})
```
在上面的示例中,请求的URL为https://example.com/api/user/1,请求方法为PUT,传递的参数为{name: 'John', age: 30}。请求成功后,控制台将输出返回的数据。
阅读全文