(Rest Api) ajax put 메소드 변수 전달 안되는 문제
보안권고로 인해 content-type이 "application/x-www-form-urlencoded" 인 경우에는 GET, POST 로만 요청을 보낼 수 있고, 그 외의 PUT, DELETE의 경우 application/json, application/xml 과 같이 '*/json', '*/xml' 으로 content-type 을 지정해줘야 한다고 함. var param = {'데이터':'값'}; $.ajax({ url:'URL', //request 보낼 서버의 경로 type:'put', // 메소드(get, post, put 등) async: false, //동기: false, 비동기(기본값): ture data:JSON.stringify(param), //보낼 데이터, contentType:'ap..