小别致真东西
文章77
标签31
分类26
Axios

Axios

先从fetch讲起

一个简单的fetch例子如下:

fetch('./api/person.json')
.then(
function(response) {
if (response.status !== 200) {
console.log('Looks like there was a problem. Status Code: ' +
response.status);
return;
}

// Examine the text in the response
// 将返回数据 Json 化
response.json().then(function(data) {
console.log(data);
});
}
)
.catch(function(err) {
console.log('Fetch Error :-S', err);
});

1. .json()返回一个被解析为JSON格式的`promise`对象,当获取成功时,我们使用 json() 读取并解析数据