如何通过序列化 jquery 中的对象获得正确的 json 结构?
我的代码如下所示:
<form id="myform">
<input name="Name[OrganizationName]" id="OrganizationName" />
</form>
输出如下内容:
"Name[OrganizationName]": "Bill"}
但我想要这个:
"Name":{"OrganizationName":"Bill"}
这是我的序列化js:
$.fn.serializeObject = function(){
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name]) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
我通过以下方式调用它:
$("#form-add-po").serializeObject();