如何使用jQuery发送JSON对象数组

时间:2011-10-24 16:28:02

标签: php javascript json jquery

我正在编写一个网页,我真的不想尝试将一组JSON对象发送到我的PHP后端脚本。

这是我的javascript代码(使用jQuery):

            var toSend = new Array();
            $("input[type=checkbox]").each(
                function (indice, item)
                {
                    var dom = $(item);
                    var domJSON = {
                        id: dom.attr("value"),
                        checked: (dom.attr("checked") == "checked" ? true : false)
                    };
                    //put object as JSON in array:
                    toSend.push($.toJSON(domJSON));                        
                }
            );
            $.ajax({
                type:"POST",
                url: "salvar_escala.php",
                data: {checkbox: toSend},
                success: function(response) {
                    $("#div_salvar").html(response);
                },
                error: function() {
                    alert("Erro");
                }
              }
            );

在PHP中我有这个:

    //Grab the array
    $arrayFromAjax = $_POST['checkbox'];

    foreach($arrayFromAjax as $aux) {
        $temp = json_decode($aux, true);
        $id = $temp['id'];
        $value = $temp['checked'];

        //This line doesn't print anything  for $id and $value
        echo "Id: $id | Value: $value<br />";

        //This line prints an crazy string, but with right values
        echo "CHEKBOX[] => $b<br />";
    }

在这段代码中,我将我的对象解码为json,然后放入一个数组并发送。我也尝试了数组中的对象(没有json),然后将数组转换为json,然后发送它们:

            $.ajax({
                type:"POST",
                url: "salvar_escala.php",
                dataType: "json",
                data: {checkbox: $.toJSON(toSend)},
                success: function(response) {
                    $("#div_salvar").html(response);
                },
                error: function() {
                    alert("Erro");
                }
              }
            );

但在这种情况下,更糟糕的是,会调用错误函数。

1 个答案:

答案 0 :(得分:2)

您应该能够在PHP中执行以下操作

<?php
$checkboxes = json_decode($_POST['checkbox']);
foreach($checkboxes as $checkbox) {
    $id = $checkbox['id'];
    $val = $checkbox['value'];
    print $id . ': ' . $val;
}

问题是你试图在没有先将其解码为PHP数组的情况下遍历JSON字符串。