This is the code I am using to upload image to the server but it always goes into the exception area.
profileimageupdate_idproof = async () => {
this.setState({ isLoading: true });
RNFetchBlob.fetch('POST', api_url + upload, {
'Content-Type' : 'multipart/form-data',
}, [
{
name : 'image',
filename : 'image.png',
type:'image/png',
data: this.state.data
}
]).then((resp) => {
this.setState({ isLoading: false });
let data = JSON.parse(resp.data);
if(data.status == 1){
this.setState({ id_proof_path: data.result });
}else{
alert("Sorry, something went wrong");
}
}).catch((err) => {
this.setState({ isLoading: false });
alert("Error on while uploading,Try again");
})
}
question from:
https://stackoverflow.com/questions/65846564/using-rnfetchblob-to-upload-image-but-getting-exception 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…