fetch('./api/person.json') .then( function(response) { if (response.status !== 200) { console.log('Looks like there was a problem. Status Code: ' + response.status); return; }
response.json().then(function(data) { console.log(data); }); } ) .catch(function(err) { console.log('Fetch Error :-S', err); });
1. .json()返回一个被解析为JSON格式的`promise`对象,当获取成功时,我们使用 json() 读取并解析数据
|