使用JQuery将javascript数组发送到服务器

时间:2011-07-30 19:11:47

标签: jquery

我想发送这个数组:

results = [1, 4, 5, 6]

所以,我正在使用这个电话:

$.ajax({
        url: 'save_record',
        type: 'POST',
        data: JSON.stringify({ sheets: results }),
        dataType: "json",
        success : function (data) {
            // Code here
        }
    });

但我的PHP文件没有收到任何参数:(有什么问题?

2 个答案:

答案 0 :(得分:1)

$.ajax({
        url: 'save_record',
        type: 'POST',
        data: {sheets:JSON.stringify(results)},
        dataType: "json",
        success : function (data) {
            // Code here
        }
    });

答案 1 :(得分:0)

$.ajax({
    url: 'save_record',
    type: 'POST',
    data: {
        sheets: results 
    },
    dataType: "json",
    success : function (data) {
        // Code here
    }
});