现在用ajax与后端交互的时候,在ajax的data部分,采用的方式是将jq节点一个一个绑定到出参上(如图)。这样的方式在参数少的时候可以应付的过来,但参数多了之后,无论是编码还是维护效率都会变低,在写ajax的data部分时,怎样优化会好一点呢。
$.ajax({
url: "/openapi/test.json",
dataType: "json",
type: "post",
formTypeData: true,
data: {
"keywords": $(".fmc-plate").attr("data-actioncontent"),
"openId": localOpenId,
"msgType": Msg.msgTypeElem,
'msgBody': Msg.msgBodyElem,
"enable": true,
"type": 3,
"replyType": 3
},
success: function (json) {
data = json.data;
if (json.success == false) {
noty({
text: "保存失败,请检查是否填入所有所需数据",
layout: "top",
timeout: 3000,
type: "error"
});
return false;
} else {
noty({
text: "保存成功",
layout: "top",
timeout: 1000,
type: "success"
});
$(".fmc-plate").remove();
$noty.close();
}
}
});
雷雷 雷雷
用jquery就简单了,用serialize()
html
js