我在看這個代碼 - https://facebook.github.io/react-native/docs/network.html語法的脂肪箭頭功能(=>),使用或不使用{}身體周圍
return fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
從我瞭解.then((response) => response.json())
什麼翻譯成:
.then(function(response) {
return response.json()
}
但我不明白這是什麼轉化爲?有在它
.then((responseJson) => {
return responseJson.movies;
})
同樣的事情,但curlybraces – adeneo
它可以讓你有一個以上的聲明。 –
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Functions/Arrow_functions – code11