9

我一直在使用 Serialize() 将复选框表单数据与 Post() 一起传递给一个可以容纳多个相同类别项目的篮子。

当我使用提交按钮发布它们时,它可以正常工作,多个值被传递并显示在一个类别下。

但是,当我使用 Jquery serialize() 时,每个类别只会显示一个项目,并且总共只显示两个类别。这是一个数组问题,但我无法解决。

我应该使用其他 JQuery 函数来传递多维数组吗?

4

7 回答 7

17

jquery会直接取多维数组,不需要序列化。

var data = {
  foo:  123,
  bar:  456,
  rows: [
    {
      column1 : 'hello',
      column2 : 'hola',
      column3 : 'bonjour',
    },
    {
      column1 : 'goodbye',
      column2 : 'hasta luego',
      column3 : 'au revoir',
    },
  ],
  test1:{
    test2: {
      test3:  'baz'
    }
  }
};

_在您的 PHP 文件中发布数据如下所示

Array
   (
    [foo] => 123
    [bar] => 456
    [rows] => Array
        (
            [0] => Array
                (
                    [column1] => hello
                    [column2] => hola
                    [column3] => bonjour
                )

            [1] => Array
                (
                    [column1] => goodbye
                    [column2] => hasta luego
                    [column3] => au revoir
                )

        )

    [test1] => Array
        (
            [test2] => Array
                (
                    [test3] => baz
                )

        )

    )

一旦你定义了你的数据多维数组,你的 Ajax 就可以像

$.ajax({
          type:           'post',
          cache:          false,
          url:            './ajax.php',
          data:           data
      });

如果您的 post 数组可能包含您不知道的字段,您可以轻松访问 php 文件中的 Post 数组

$data = file_get_contents('php://input');
$data = json_decode($data, true);
于 2012-07-31T19:23:50.287 回答
2

我没有找到任何好的解决方案,所以我使用JSON.stringify();解决了这个问题。 这是我的代码

客户端 :

var data = {a:{'foo':'bar'},b:{'this':'that'}};
$.ajax({ url        : '/',
         type       : 'POST',                                              
         data       : {'data':JSON.stringify(data)},
         success    : function(){ }
       });

服务器端:

$data = json_decode($_POST['data']);
print_r($data);
// Result:
// Array( "a" => Array("foo"=> "bar"), "b" => Array("that" => "this"))
于 2012-08-06T14:19:28.560 回答
1
$.post(url, {"myarray":arrayData}, function(data){/*stuff*/}, 'json');

服务器端,您可以使用 php 访问它

$myArray = $_POST['myarray'][0];
foreach($myArray as $item)
{
   /*logic here for picking apart your array*/
}
于 2012-07-31T19:21:51.727 回答
1

这对我有用,使用 jQuery 和 laravel 8,构建(递归)对象而不是数组:

function getSorted(wrapper) {
    let set = {};
    let children = $(wrapper).children('.list-group');
    let index = 0;

    children.each(function(i, item) {
        $(item).children('.list-group-item').each(function(j, section) {
            index++;
            set[index] = {};
            set[index].id = $(section).data('id');
            set[index].subsections = getSorted($(section));
        });
    });

    return set;
}

以通常的方式用ajax发送它:

let orderingSet = getSorted($('#sections')); // recursive function for all sections

$.ajax({
    type: 'POST',
    url: sortUrl,
    dataType: 'json',
    data: {'id': sectionId, 'to_id': parentId, 'orderingSet': orderingSet}
})

并从请求中检索它:$orderingSet = request('orderingSet');

这是上面创建的多维“数组”的服务器响应的显示方式(只是其中的一部分),其中特定的数字索引作为拖放后的部分位置:

在此处输入图像描述

于 2021-10-20T13:30:19.340 回答
0

来自 jQuery 文档:

对于要包含在序列化字符串中的表单元素的值,该元素必须具有 name 属性。来自复选框和单选按钮(“单选”或“复选框”类型的输入)的值仅在它们被选中时才被包括在内。

首先检查您的代码。很难在没有看到您的代码的情况下提供进一步的帮助。

于 2012-07-31T19:24:16.657 回答
0
$.ajax({
    type:   'post',
    cache:  false,
    url:    './ajax.php',
    data:   { arrayData }
});

您必须使用{}来包含{ arrayData }变量。

然后echo $_POST[arrayData];将产生数组。如果不是,它不会发送数组值。

于 2020-10-28T08:54:50.953 回答
0

这是我的元代码片段,对我来说很好用......

    var f={};  

    f.text = "SOME DATA";
    f.any_other_field = some_other_value;
    f.items = [];

    $("#droppable .or").each(function(ee){
          var tmp={};
          tmp.id    = $(this).data("cid");
          tmp.name  = $(this).find(".ornazev").text();
          tmp.price = $(this).data("price");
          tmp.currency = $(this).data("currency");
          tmp.ks    = 1;  
          f.items.push(tmp);
    });
    $.ajax({
      type: "POST",
      url: urlsave,
      data: {"f":f},
      dataType: "text",
.....
于 2017-04-12T11:59:08.790 回答