laravel - AJAX 전송 시 Content-Type 지정 (Error 405)
파일 업로드를 처리하는 폼 데이터를 AJAX 로 전송 시, 헤더에 Content-Type 을 지정해야 한다.반드시 지정해야 하는 것은 아니지만 아래 오류가 발생할 수 있다. Error MessageError 405. The GET method is not supported for this route. Supported methods: POST. axios 의 경우 헤더 지정headers: { "Content-Type": "multipart/form-data",} 전문var data = new FormData(frm);let axiosConfig = { headers: { "Content-Type": "multipart/form-data", }}axios.post(url, da..