const addPinAPI = (formdata) => {
return function (dispatch, getState, { history }) {
axios({
method: "POST",
url: "http://3.35.219.78/pin/1",
headers: {
"Content-Type": "multipart/form-data; ",
accept: "application/json",
"Access-Control-Allow-Origin": "*",
authorization: `Bearer ${getCookie("user_login")}`,
},
data: formdata,
})
마지막줄에 formdata에 {}를 넣어서 서버에 전송을 했었는데 formadata 자체가 객체로 보내는 것이였다. 그래서 객체안에 객체로 보내는 형식이 되어 버려서 서버에서 전혀 응답을 할 수 가 없었다.
실패는 우회로이지
막다른 길이 아니다.
-지그 지글러-