@uni/request
时间: 2023-10-18 21:56:28 浏览: 81
你好!`@uni/request`是一个基于uni-app封装的插件,用于发送HTTP请求。它提供了一种简单且统一的方式来处理各种类型的请求。
要使用`@uni/request`插件,你可以按照以下步骤进行操作:
1. 在项目根目录下的`package.json`文件中添加依赖:
```json
"dependencies": {
"@uni/request": "^2.0.0"
}
```
2. 执行命令安装依赖:
```shell
npm install
```
3. 在需要发送请求的页面中引入插件:
```javascript
import request from '@uni/request';
```
4. 使用`request`方法发送请求:
```javascript
request({
url: 'https://api.example.com',
method: 'GET',
data: {
param1: 'value1',
param2: 'value2'
},
header: {
'Content-Type': 'application/json'
}
}).then(res => {
console.log(res.data);
}).catch(err => {
console.log(err);
});
```
以上是使用`@uni/request`插件发送HTTP请求的基本步骤。你可以根据具体需求添加其他配置参数,如`header`、`dataType`等。
希望这对你有所帮助!如有其他问题,请随时提问。
阅读全文