JavaScript jQuery / Ajax - 如何生成有效的POST哈希?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript jQuery / Ajax - 如何生成有效的POST哈希?相关的知识,希望对你有一定的参考价值。

var hash = new String();

    $.each(elements, function(k) {

        hash += this['id'] + 'weight: "' + k + '",\n';
        hash += this['id'] + 'children: "' + this['children'].toString() + '",\n';

    });

"if I print hash I get:"

node1weight: "0",
node1children: "node3,node4",
node2weight: "1",
node2children: "",
node5weight: "2",
node5children: "",


"but the $_POST array in my php script is empty when using the following line:"

$("#field1").load("/nodes/sort", hash);

以上是关于JavaScript jQuery / Ajax - 如何生成有效的POST哈希?的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript之Ajax-6 Ajax的增强操作(jQuery对Ajax的支持表单操作)

Javascript-- jQuery Ajax应用

如何使用 javascript/jquery/AJAX 调用 Django REST API?

使用JavaScript和jQuery简单实现Ajax技术

如何在 javascript/jquery 中发出 ajax 请求

javascript 学习小结 jQuery封装ajax尝试 by FungLeo