Как загрузить изображение в реагирующем с помощью axios? - PullRequest
0 голосов
/ 01 марта 2019

Я пытаюсь загрузить изображение с помощью Axios, но получаю: Запрос не выполнен с кодом состояния 500. У меня нет проблем с бэкендом, потому что я могу загрузить изображение с почтальоном, и все в порядке.Это мой addDocument () в FileUpload.js.

 addDocument(){
   let { title, description, imgUri } = this.state;
   console.log(this.state.imgUri);
   const body = new FormData();
   body.append('image', {
        uri: imgUri,
        type: 'image',
        name : `${new Date().getTime()}.jpg`,
    });

    addDocument(title, description, body).then((response) => {
        if (response.isSuccess == true) {
            this.setState({ loading: false });
            this.props.navigation.navigate('FileList',{isUpdate:'true'});
        } 
    });
};

Это мой addDocument () в document.service.js.

export const addDocument = async (title, description, imageFile) => {
const trekkerId = await AsyncStorage.getItem("trekker_id");

const model = {
    profileDocumentId: '',
    title: title,
    description: description
}

console.log(model);
console.log(imageFile);

if (trekkerId) {
    return axios({
        method: 'post',
        url: baseUrl + "/api/Document/Document",
        data: {
            file: imageFile,
            model: model
        },
        headers: {
            'profileId': trekkerId,
            'Authorization': 'Bearer ' + await AsyncStorage.getItem("id_token"),
            'Content-Type': 'multipart/form-data'
        },
    }).then((response) => {
        // console.log(response);
        return {
            isSuccess: true
        };

    }).catch((error) => {
          console.log(error);
            return {
                isSuccess: false,

            }

    });
...