我最近从使用jQuery转向使用Redux的isomorphic-fetch。在IE中运行时,它设法获取正常。但是,当我在Chrome中运行时,我会得到以下内容。
Failed to load resource: the server responded with a status of 401 (Unauthorized)
值得注意的是,web api确实启用了Windows身份验证。
这是执行fetch的代码:
export const fetchSearchResults = (name) => {
return (dispatch) => {
dispatch(requestSearchResults(name))
return fetch(API URI HERE)
.then(response => response.json())
.then(json => {
console.log('Fetch: ' + json.message.features.length)
dispatch(receiveSearchResults(json))
})
}
}
答案 0 :(得分:27)
我想你在服务器上有基于cookie的身份验证。在这种情况下,它可能与credentials
的{{1}}密钥相关。在jQuery 中使用的XHR请求始终发送您的Cookie,但使用fetch
您应该通过fetch
选项
credentials
如果您向同一来源(域名)提出请求same-origin
否则像这样:
include
我认为它适用于IE,因为...
fetch(API_URI_HERE, {credentials: 'same-origin'})
...
polyfill在引擎盖下使用了XHR请求。