微信小程序Put请求传参
时间: 2023-09-15 17:20:57 浏览: 166
微信小程序 POST请求的实例详解
5星 · 资源好评率100%
微信小程序的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}。请求成功后,控制台将输出返回的数据。
阅读全文