반응형

1. 시험환경

    - javascript, jQuery, ajax

 

2. 목적

    - ajax를 이용하여 URL 호출하는 코드

    - front-end에서 수집한 json object를 controller로 전달하는 코드

 

3. 적용

 

var result = jsonFromTbl($('#markerTable'));

if(result != null)
{
    console.log('result', result);


    $.ajax({
        url: "sendMdbData.do",                // 호출할 URL
        type: "POST",                             // 호출 type
        data: JSON.stringify(result),           // 전달 데이터 : result(JSON Object)를 문자열로 변환(JSON.stringify)
        dataType: "json",
        contentType: "application/json; charset=UTF-8",
        success: function(response) {
        }
    });
}

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형

+ Recent posts