자바스크립트/React Native

[React Naitve] Axios multipart image upload network error

RightHot 2020. 8. 9. 16:48

Axios multipart image network error

http 통신을 사용하여 멀티파트 업로드를 구현중 ... 이미지를 폼데이터에 추가하면

Network Error가 발행되는 경우가 있다.


1. name, type, uri 확인

간혹 type을 빼먹으면 network error가 난다고 하니 주의하자.

formData.append("imgPath01", {
 name: "imgPath01.jpg",
 type: imgPath01.mime,
 uri: imgPath01.path
});


2. 안드로이드 FLIPPER_VERSION 버전 업그레이드

android > gradle.properties

FLIPPER_VERSION=0.46.0

2-2. 클린 , 리빌드

android ->app->source->debug

2-1. Debug 폴더 삭제 (캐시)