wx.request设置请求标头
时间: 2023-11-05 12:49:43 浏览: 152
Node Node.js CLI软件的欢迎标头。-Node.js开发
要设置请求标头,你可以在 `wx.request` 的参数中使用 `header` 字段。`header` 是一个对象,其中的键值对表示请求标头的名称和值。
以下是一个示例代码:
```javascript
wx.request({
url: 'https://example.com/api',
method: 'GET',
header: {
'Content-Type': 'application/json', // 设置 Content-Type 标头
'Authorization': 'Bearer <token>', // 设置自定义授权标头
},
success: function(res) {
console.log(res.data);
},
fail: function(error) {
console.log(error);
}
});
```
在上面的示例中,我们设置了两个请求标头。首先是 `Content-Type` 标头,它指定了请求体的数据类型为 JSON。然后是自定义的授权标头 `Authorization`,它使用 Bearer Token 方式进行身份验证。
你可以根据自己的需求添加或修改其他标头字段。
阅读全文