发起网络请求
请求参数
参数 |
类型 |
必填 |
说明 |
url |
String |
是 |
接口url。提示:URL中如果包含中文或者特殊字符,请使用encodeURIComponent进行处理 |
method |
String |
是 |
服务请求类型,仅支持 get / post / put / delete。注:请求类型必须是小写 |
body |
String |
是 |
请求参数 |
headers |
Object |
是 |
请求头 |
timeout |
Number |
否 |
超时时间 |
注意:herders为x-www-form-urlencoded时,body需要code=value&key=value格式
返回结果
无。
请求示例
get请求
-
ES6版本
const url = 'http://www.example.com/api';
const _headers = {
'Content-Type': 'application/json'
};
HWH5.fetchInternet(url, { method: 'get', headers: _headers, timeout: 6000 }).then(res => {
res.json().then(reply => {
console.log('服务端返回: ', reply);
});
}).catch(error => {
console.log('请求异常', error);
});
下载地址: react-router刷新页面Cannot GET 问题 React 中 调用 Asp.net WebApi |