回答

0

您可以從服務器獲取數據,並通過它像這樣:

class MyCoponent extends React.Component{ 

    state = { data: null } 

    fetchData =() => { 
     // const result = fetch from api ... 
     this.setState(() => ({ data: result })) 
    } 

    render(){ 
     const { data } = this.state 
     if(!data){ 
     return <Text>No data</Text> 
     } 
     return(
     <Carousel data={data}/> 
    ) 
    } 

} 
+0

我從服務器上獲取數據,並通過它,應用程序沒有錯誤,但它並沒有顯示出圖像。什麼錯?我按照這個例子https://github.com/archriss/react-native-snap-carousel/tree/master/example –

相關問題