Sample


$.param 을 사용하면 tests=1&test=2&test=3 형태로 변경 해준다.


var tests = [1, 2, 3, 4, 5];

$.ajax({
    type: 'post',
    url: '/test',
    data: {
        tests: $.param({ tests: tests }, true)
    },
    dataType: 'json'
}).done(function(result) {
    // success
}).fail(function(result) {
    // fail
});

참고 사이트


+ Recent posts