(WEB) 통신 시 415 Error (Media Type...)
JSON 으로 통신을 오갈 때 나타나는 에러. 서로 형이 맞지 않아 발생한다. 필자는 data 와 contentType 을 JSON 설정으로 수정해준 뒤 통신이 잘 되었다. $.ajax({ url: '/test/connectiontest.do', type: 'post', data: JSON.stringify(param), dataType: 'json', contentType : "application/json; charset=utf-8", success:function(result, status){ console.log(result); }, error:function(req, status){ //req:요청객체, status:상태값 console.log(req); console.log(status); a..