ajax 파일 업로드
var formData = new FormData($('#frm')[0]); $.ajax({ url: 'http://...', //request 보낼 서버의 경로 type: 'post', // 메소드(get, post, put 등) dataType: "json", enctype: 'multipart/form-data', async: false, //동기: false, 비동기(기본값): ture data: formData, //보낼 데이터, processData: false, contentType: false, timeout: 3000, headers: { "Authorization": token //로그인 토큰 }, success: function (data) { alert(data.message); l..