我想发送这个数组:
results = [1, 4, 5, 6]
所以,我正在使用这个电话:
$.ajax({
url: 'save_record',
type: 'POST',
data: JSON.stringify({ sheets: results }),
dataType: "json",
success : function (data) {
// Code here
}
});
但我的PHP文件没有收到任何参数:(有什么问题?
答案 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
}
});