使用fetch api发送请求时出现如下错误
按照网上的方法添加了如下代码
export function get(url) {
var result = fetch(url, {
credentials: 'include',
headers: {
'Accept': 'application/json, text/plain, */*',
}
});
return result;
}
但是跨域问题依然存在
同时在ie8下未发送请求,确认安装了 fetch-ie8 ,es6-promise ,同时引入了es5-shim和es5-sham
相关分类