2017-06-14 10 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 
    }) 

..

乾杯:)

関連する問題