ASP.NET MVC3中的HTML反而不是JSON的IIS响应

前端之家收集整理的这篇文章主要介绍了ASP.NET MVC3中的HTML反而不是JSON的IIS响应前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
主题是自我介绍的.我有开发人员和生产环境.开发人员环境是我的本地机器.我有一些行为方法,在某些事情出错(或发生错误或逻辑不一致))时,将响应状态代码设置为500,并返回Json-answer.我的常见方法如下:
[HttpPost]
public ActionResult DoSomething(int id)
{
    try
    {
         // some useful code
    }
    catch(Exception ex)
    {
         Response.StatusCode = 500;
         Json(new { message = "error" },JsonBehavIoUr.AllowGet)
    }
}

在客户端生产环境当发生这样的错误时,ajax.response看起来像HTML代码,而不是预期的JSON.

考虑这个:

<div class="content-container">
 <fieldset>
   <h2>500 - Internal server error.</h2>
   <h3>There is a problem with the resource you are looking for,and it cannot be displayed.</h3>
</fieldset>
</div>

过滤器上下文不是一个选项.我认为这是某种IIS或web.config问题.

解:
我们决定在Global.asax的BeginRequest中添加TrySkipIisCustomErrors,它解决了我们应用程序中每个方法的问题.

解决方法

我想IIS正在服务一些友好的错误页面.您可以尝试通过在响应上设置TrySkipIisCustomErrors属性来跳过此页面
catch(Exception ex)
{
     Response.StatusCode = 500;
     Response.TrySkipIisCustomErrors = true;
     return Json(new { message = "error" },JsonBehavIoUr.AllowGet)
}
原文链接:https://www.f2er.com/aspnet/246028.html

猜你在找的asp.Net相关文章