2017-06-14 48 views
0

我想從GET API React-Native-Fetch-Blob添加複選框列表數據。有任何解決方案?如何從GET api添加複選框列表React-Native-Fetch-Blob?

這是我的代碼複選框

class....{ 
constructor(props) { 
    super(props); 
    this.state = { 
    name: false, 
    }; 
} 
render(){ 
    return(
    <CheckBox checked={this.state.name}/> 
     <Text style={{marginLeft: 20}}>List Checkbox 1</Text> 
); 
} 
} 
+0

你確切的要求是什麼?你可以說得更詳細點嗎。 –

回答

1

以下是一種從fetchBlob獲取數據:

RNFetchBlob.fetch('GET', 'API', { 
    Authorization : 'access-token', 
    // more headers .. 
    }) 
    // when response status code is 200 
    .then((res) => { 
    let json = res.json() 
    }) 
    // Status code is not 200 
    .catch((errorMessage, statusCode) => { 
    // error handling 
    }) 

所有這些將數據傳遞到複選框後..

乾杯:)

相關問題