假设我有以下数据:
var arr = [], arr1 = [], arr2 = [], arr3 = [], arr4 = [];
var a = 'something', b = 'else';
arr1['key1-1'] = 'value1-2';
arr1['key1-2'] = 'value1-2';
for (var i = 0; i < someCond; i++) {
arr = [];
arr['key2-1'] = 'value2-1';
arr['key2-2'] = 'value2-2';
arr2.push(arr);
}
现在我需要将它的漏洞传递给 php 脚本。
我将它打包成一个变量,如下所示:
var postVar = {
a: a,
b: b,
arr1: arr1,
arr2: arr2
};
我正在使用 jQuery,所以我尝试像这样发布它:
1)
//Works fine for a and b, not for the arrays
$.post('ajax.php', postVar, function(response){});
这:
2)
var postVar = JSON.stringify(postVar);
$.post('ajax.php', {json: postVar}, function(response){});
与 php 文件
$req = json_decode(stripslashes($_POST['json']), true);
这也行不通。
我应该如何构造/格式化我的数据以将其发送到 PHP?
谢谢
编辑:
案例 1:console.log(postVar);
PHP print_r($_POST) 响应:数组 ( [a] => something [b] => else )
如您所见,php 端没有数组(对象)。
案例2:
当我添加以下内容时:
postVar = JSON.stringify(postVar); 控制台.log(postVar);
我
用 console.log(postVar)得到
{"a":"something","b":"else","arr1":[],"arr2":[[],[],[]]}
所以这似乎是这种情况下的问题......对吧?