【技巧】處理提交數據的技巧
阿新 • • 發佈:2017-08-19
處理 tty back ctx get 提交 use sel post
function addUserRole() {
var instance = $(‘#resourcesTree‘).jstree(true);
var select = instance.get_checked (true);
var ids = [];
for (var i = 0; i < select.length; i++) {
ids.push(‘{"id":"‘ + select[i].id + ‘"}‘);
}
debugger;
$.ajax({
type : "post", //提交方式
url : "${ctx}/role/addRoleResources/" + ${roleId},//路徑
//dataType : "json",
contentType : "application/json",
data : ‘[‘ + ids + ‘]‘,
success : function(result) {//返回數據根據結果進行相應的處理
parent.parent.layer.alert(‘保存成功!‘, {
icon : 6
});
}
});
}
【技巧】處理提交數據的技巧