标签:
前台:
表单必须含有name属性
if (action == ‘edit‘) { MyForm.getForm().load({ url: ‘../../data/personMatter/EmployeeHandler.ashx‘, params: { Action: action,empId:empId }, failure: function (form, action) { Ext.Msg.alert("Load failed", action.result.errorMessage); } }); }
后台:
Model.hr_employee model = bllEmp.GetModel(id); model.sex = model.sex == "男" ? "1" : "2";//下拉框 model.status = model.status == "在职" ? "1" : "2"; model.pwd = ""; context.Response.Write(JsonConvert.SerializeObject(new { success =true,data=model}));
标签:
原文地址:http://www.cnblogs.com/Celebrator/p/4493785.html