使用wx.get发起get方式的网络请求
时间: 2024-12-19 15:18:03 浏览: 3
在微信小程序(WeChat Mini Program)中,开发者可以使用`wx.request`接口发起网络请求,包括GET方式。`wx.get`方法实际上是`wx.request`方法的一种简化形式,专用于GET类型的HTTP请求。以下是使用`wx.get`的基本步骤:
1. 导入必要的API:
```javascript
import wx from '../../api/wx';
```
2. 调用`wx.get`方法,传入配置对象:
```javascript
const config = {
url: 'https://example.com/api/data', // 请求的URL地址
data: { key: 'value' }, // 可选,需要传递的数据
method: 'GET', // 设置为GET方法
header: { 'content-type': 'application/json' }, // 可选,设置请求头
success(res) {
// 成功回调函数,处理返回数据
console.log(res.data);
},
fail(error) {
// 失败回调函数,处理错误信息
console.error('Failed:', error);
}
};
```
3. 发起请求:
```javascript
wx.get(config).then((response) => {
// response就是服务器响应的数据
}).catch((err) => {
// 错误处理
});
```
阅读全文