easyui 1.2.4 +aspnet mvc 흔한 문제
6769 단어 easyui
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");
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
EasyUI 생성 트리, 탭 열기 클릭텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.