admin管理员组文章数量:1345085
I am desperately trying to manually create a JSON-style array in Javascript to send over the network via jQuery's AJAX method.
var fieldsobj = {fields:[]}
$(".fact_field", fact).each(function(index, field){
var index = $(field).attr("data-index");
var name = $(".fact_field_label", field).text().trim();
var value = $(".fact_field_value", field).text().trim();
fieldsobj["fields"].push({index:index, name:name, value:value});
});
//...
$.ajax({
type: 'PUT',
url: url,
data: fieldsobj,
success: function(data){...
},
plete: function(){...
}
});
What I want is the following:
{fields => [{index:0, name:1, value:2},{...},{...}]}
What I get is this:
{"fields"=>{"0"=>{...}, "1"=>{..}, "2"=>{...}, "3"=>{...}}
What am I doing wrong?
I am desperately trying to manually create a JSON-style array in Javascript to send over the network via jQuery's AJAX method.
var fieldsobj = {fields:[]}
$(".fact_field", fact).each(function(index, field){
var index = $(field).attr("data-index");
var name = $(".fact_field_label", field).text().trim();
var value = $(".fact_field_value", field).text().trim();
fieldsobj["fields"].push({index:index, name:name, value:value});
});
//...
$.ajax({
type: 'PUT',
url: url,
data: fieldsobj,
success: function(data){...
},
plete: function(){...
}
});
What I want is the following:
{fields => [{index:0, name:1, value:2},{...},{...}]}
What I get is this:
{"fields"=>{"0"=>{...}, "1"=>{..}, "2"=>{...}, "3"=>{...}}
What am I doing wrong?
Share Improve this question asked Feb 18, 2011 at 5:17 DennyDenny 1,2303 gold badges15 silver badges27 bronze badges2 Answers
Reset to default 8When you pass an object as the data
property, jQuery will pass it as url-encoded form parameters (e.g. foo=bar&moo=too
) in the body. I think what you want is to pass JSON through the body.
Grab the json2.js
written by uncle Crockford and use JSON.stringify
(that library provides the functionality for browsers that still don't support it):
$.ajax({
type: 'PUT',
url: url,
data: JSON.stringify(fieldsobj),
contentType: "application/json",
success: function(data){...
},
plete: function(){...
}
});
And don't forget to set the contentType
property! On the PHP side, you can use json_decode
to decode the raw body content:
$fieldsobj = json_decode(@file_get_contents('php://input'));
May be this helps.
<ul>
<li id="p1" data-age="40">John</li>
<li id="p2" data-age="28">Jack</li>
<li id="p3" data-age="50">Nash</li>
</ul>
<script>
var a = [];
$("li").each(function(i){
var o = {};
o.id = $(this).attr("id");
o.age = $(this).attr("data-age");
o.name = $(this).text();
a.push(o);
});
console.log(a);
//var a = [{id:"p1",age:40, name:"John"},{id:"p2",age:28, name:"Jack"},{id:"p3",age:50, name:"Nash"}];
</script>
本文标签: Javascript Create JSON Hash Array for jQuery AJAXStack Overflow
版权声明:本文标题:Javascript Create JSON Hash Array for jQuery AJAX - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797458a2540690.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论