uniapp http请求
时间: 2023-10-23 15:15:22 浏览: 109
uni-app 网络请求提示 OPTIONS xxx 403 (Forbidden)
好的,你的问题是:uniapp如何发起http请求?
Uniapp中可以使用uni.request()方法来发起http请求。该方法接受一个对象参数,包含以下属性:
- url: 请求地址
- data: 请求参数
- header: 请求头
- method: 请求方法(GET、POST等)
- dataType: 返回值类型(text、json等)
- success: 请求成功回调函数
- fail: 请求失败回调函数
- complete: 请求完成回调函数
示例代码:
```
uni.request({
url: 'http://www.example.com/api',
data: {
username: 'example',
password: 'example123'
},
header: {
'content-type': 'application/json'
},
method: 'POST',
dataType: 'json',
success: res => {
console.log(res.data)
},
fail: err => {
console.log(err)
}
})
```
阅读全文