出于某种原因fetch(https://fetch.spec.whatwg.org/)未在Safari(版本9.0.3)中定义,有谁知道为什么?它似乎是标准,在Chrome和Firefox中运行良好.似乎找不到其他人有同样的问题
我正在使用与redux的反应,这是一些示例代码:
export function fetchData (url) {
return dispatch => {
dispatch(loading())
fetch(url, {
method: 'GET'
})
.then(response => {
response.json()
.then(data => {
dispatch(success(data))
})
})
}
}
Run Code Online (Sandbox Code Playgroud)