0

我想从 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>
  );
 }
}
4

1 回答 1

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

毕竟这将数据传递给复选框..

干杯:)

于 2017-06-14T02:14:23.227 回答