0
我想獲得一個json文件作爲回報。我收到了一個承諾,回覆在React本地獲取電話
這是一個取功能我使用
handleApi(){
return
fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
}
這個函數被調用上的按鈕單擊事件。
handleSubmit() {
console.log(
this.handleApi();
)
,但我得到這個承諾在返回的對象不是預期的數據
無極{_40:0,_65:0,_55:空,_72:空} _40:0_55:null_65 :0_72:null__proto__:對象
'fetch'返回一個承諾,它是如何工作。您需要將'console.log'移動到'this.handleApi()。然後(console.log)'中 –