Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

react native - Using RNFetchBlob to upload image but getting exception

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...