在.Net MVC3中如何处理JqGrid中的服务器端错误?

发布于 2024-12-07 17:46:21 字数 822 浏览 0 评论 0原文

我将 JqGrid 与 MVC 3 结合使用。

当我尝试删除行时,服务器端代码会处理一些错误。

如何将此错误消息传递给 JqGrid?

例如,在操作方法中:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Delete(int id) {
    Project project = dbContext.Projects.Find(id);
    dbContext.Projects.Remove(project);

    try {
        dbContext.SaveChanges();
    } catch (DbUpdateException){
        // Send the error to JqGrid
    }

    return RedirectToAction("Index");
}

在 JqGrid 中:

$('#DataTable').        
jqGrid('navGrid', '#pager',
{ add: true, del: true, edit: true, search: false },
{ url: Url("Edit", controllerName), closeAfterEdit: true },
{ url: Url("Create", controllerName), closeAfterAdd: true },            
{ url: Url("Delete", controllerName) }
);

方法 URL 只是创建操作方法的 URL

I am using JqGrid with MVC 3.

Some errors are handled in the server side code when I am trying to delete a row.

How can I pass this error message to JqGrid?

For example, In the action method:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Delete(int id) {
    Project project = dbContext.Projects.Find(id);
    dbContext.Projects.Remove(project);

    try {
        dbContext.SaveChanges();
    } catch (DbUpdateException){
        // Send the error to JqGrid
    }

    return RedirectToAction("Index");
}

In JqGrid:

$('#DataTable').        
jqGrid('navGrid', '#pager',
{ add: true, del: true, edit: true, search: false },
{ url: Url("Edit", controllerName), closeAfterEdit: true },
{ url: Url("Create", controllerName), closeAfterAdd: true },            
{ url: Url("Delete", controllerName) }
);

the method URL simply creates the URL to the action method

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧故 2024-12-14 17:46:21

我找到了解决方案。

只需从 catch 块中抛出异常,JqGrid 就会捕获它!

虽然我没想到!!!

喜欢:

        try {
            dbContext.SaveChanges();
        } catch (DbUpdateException){
            throw new Exception("Could not delete project.");
        }

I found the solution.

Just throw the exception from the catch block and JqGrid will catch it!

I did not expect it though!!!

Like:

        try {
            dbContext.SaveChanges();
        } catch (DbUpdateException){
            throw new Exception("Could not delete project.");
        }
糖粟与秋泊 2024-12-14 17:46:21
try
{
     dbContext.SaveChanges();
     return Json(true);
} 
catch (DbUpdateException)
{
     var json = new { msgkey = "Could not delete project." };
     return Json(json);
}
try
{
     dbContext.SaveChanges();
     return Json(true);
} 
catch (DbUpdateException)
{
     var json = new { msgkey = "Could not delete project." };
     return Json(json);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文