const formData = new FormData()
const photos = [{
name: '사진',
type: 'image/jpg',
image.uri = Platform.OS === 'android' ? res.assets[0].uri : res.assets[0].uri.replace('file://', '');
},
{
name: '사진2',
type: 'image2/jpg',
image.uri = Platform.OS === 'android' ? res.assets[0].uri : res.assets[0].uri.replace('file://', '');
}]
photos.forEach((item) => {
formData.append('name', item)
})
console.log(formData.getParts()); // 데이터 확인
axios({
method: 'POST',
url: 'url',
data: formData,
headers: {
Accept: '*/*',
'Content-type': 'multipart/form-data',
}
})
서버와 appned() 'name', 데이터 형식을 맞춰줘야 한다
요청에 대한 처리가 없을 경우 응답이 없을 수도 있다