바르고 뜨겁게
[React Naitve] Axios multipart image upload network error 본문
자바스크립트/React Native
[React Naitve] Axios multipart image upload network error
RightHot 2020. 8. 9. 16:48http 통신을 사용하여 멀티파트 업로드를 구현중 ... 이미지를 폼데이터에 추가하면
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 폴더 삭제 (캐시)
'자바스크립트 > React Native' 카테고리의 다른 글
React Native A4 Size Print View (0) | 2020.09.16 |
---|---|
IOS domain request network error (0) | 2020.08.21 |
[React native] FlatList with large content rows will crash only on iOS physical device (0) | 2020.07.28 |
[ERROR] xcodebuild DTDeviceKit: deviceType from was NULL (0) | 2020.06.03 |
[IOS ERROR] Bundle Idenfifier 변경시 linker command failed with exit code 1 (0) | 2020.05.28 |
Comments