fetch获取Json数据失败,不设置mode属性失败,设置mode为"cors","no-cors"也失败:
fetch('http://www.sojson.com/open/api/weather/json.shtml?city=%E6%88%90%E9%83%BD', {
method: 'GET',
mode: 'no-cors'
}).then(response => {
if (response.ok) {
return response.json();
} else {
throw new Error()
}
}).then(data => {
console.log(data);
}).catch(err => {
console.error('error:'+err);
});
axios获取Json数据成功:
var axios = require('axios');
axios.get('http://www.sojson.com/open/api/weather/json.shtml?city=%E6%88%90%E9%83%BD')
.then(function (response) {
console.log(response.data);
})
.catch(function (err) {
console.log(err);
});
出现这种情况是什么原因?fetch到底该怎么调用?
慕虎7371278
相关分类