我正在学习如何使用jQuery、$.post和php。(我不像你们那样是职业选手(
我想把一个多维数组发送到php
我的数组看起来像这样:
var item= new Array();
item[0] = ["Object", "Value"];
item[1] = ["id", "x"];
item[2] = ["status", "y"];
item[3] = ["date", "z"];
etc...
这是我的jQuery代码:
//AJAX
$("#add").click(function()
{
$.post( 'ajax_new.php' ,
{
item : item
},
function(data)
{
alert( data );
} //end: if:else
); //END:$.post
}); //END:ajax
另外,在发布数组之后,我如何在php中处理它
像这样?:
<?
$id = $_POST['item'][1][1];
echo $id;
?>
我用来在将收集的数据发送到服务器之前将其转换为JSON。http://api.jquery.com/serializeArray/
我肯定会将其转换为JSON对象,或者使用JSON对象而不是数组。