何らかの理由でfetch
(https://fetch.spec.whatwg.org/)がSafari(バージョン9.0.3)で定義されていません。それは標準と思われ、ChromeとFirefoxで正常に動作します。誰が私が使用している同じ問題にSafariでフェッチが定義されていない(ReferenceError:変数が見つかりません:フェッチ)
を持つ見つけることができないよう再来と反応して、ここにいくつかのサンプルコードです:
export function fetchData (url) {
return dispatch => {
dispatch(loading())
fetch(url, {
method: 'GET'
})
.then(response => {
response.json()
.then(data => {
dispatch(success(data))
})
})
}
}
http://caniuse.com/#search=fetch 'fetch'が無いのSafariでサポートされているが、それを追加することができます。 –