如何从GET api React-Native-Fetch-Blob添加Checkbox List?

时间:2017-06-14 02:02:47

标签: react-native 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>
  );
 }
}

1 个答案:

答案 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
  })

将所有这些数据传递给复选框..

干杯:)