我想从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
})
将所有这些数据传递给复选框..
干杯:)