easyui 1.2.4 +aspnet mvc 흔한 문제

6769 단어 easyui
1. form 제출 리셋 함수는 터치할 수 없습니다. 서버 쪽에서 json을 브라우저에서 가져옵니다.
function saveUser() {
$(
'#fm').form('submit', {
url: url,
onSubmit:
function () {
return $(this).form('validate');
},
success:
function (result) {
var result = eval('(' + result + ')');
if (result.success) {
$(
'#dlg').dialog('close'); // close the dialog
$('#dg').datagrid('reload'); // reload the user data
} else {
$.messager.show({
title:
'Error',
msg: result.msg
});
}
}
});
}

서버 측 코드
public JsonResult AddCustomer(Customer cust)
{
string result = "";
try
{
TestEntities data
= new TestEntities();
data.AddToCustomers(cust);
data.SaveChanges();
result
= " ";
}
catch (Exception ex)
{
result
= ex.Message;
}

return this.Json(new { success = true }, JsonRequestBehavior.AllowGet);
}

이 액션이 되돌아오는 Json은 브라우저에 의해 직접 캡처되었고, 전방 aax의 리셋 함수를 터치하지 않았습니다.
해결 방법:
return this.Json(new { success = true },"text/html", JsonRequestBehavior.AllowGet);

 2.easyui 1.2.4bug는 다중 선택을 허용하는 데이터 grid에서 선택한 한 줄의 기록을 삭제하고 Reload 데이터 grid 데이터를 발견한 후에 삭제된 기록이 getSelections가 되돌아오는 row에 존재하고 첫 번째 줄, 즉 getSelected가 되돌아오는 것을 발견하면 삭제된 기록입니다.
해결 방법:
데이터를 다시 로드하기 전에 Selections 지우기
$('#test').datagrid("clearSelections");

 

좋은 웹페이지 즐겨찾기