繁体   English   中英

如何在Application_Error()中知道asp.net中的请求是ajax

[英]How to know if the request is ajax in asp.net in Application_Error()

如何在Application_Error()中知道asp.net中的请求是ajax

我想在Application_Error()中处理应用程序错误。如果请求是ajax并且抛出了一些异常,则在日志文件中写入错误并返回包含客户端错误提示的json数据。 否则,如果请求是同步并且抛出了一些异常,请在日志文件中写入错误,然后重定向到错误页面。

但现在我无法判断请求是哪种。 我想从标题中获取“X-Requested-With”,遗憾的是标题的键不包含“X-Requested-With”键,为什么?

测试请求标头应该有效。 例如:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    public ActionResult AjaxTest()
    {
        throw new Exception();
    }
}

并在Application_Error

protected void Application_Error()
{
    bool isAjaxCall = string.Equals("XMLHttpRequest", Context.Request.Headers["x-requested-with"], StringComparison.OrdinalIgnoreCase);
    Context.ClearError();
    if (isAjaxCall)
    {
        Context.Response.ContentType = "application/json";
        Context.Response.StatusCode = 200;
        Context.Response.Write(
            new JavaScriptSerializer().Serialize(
                new { error = "some nasty error occured" }
            )
        );
    }

}

然后发送一些Ajax请求:

<script type="text/javascript">
    $.get('@Url.Action("AjaxTest", "Home")', function (result) {
        if (result.error) {
            alert(result.error);
        }
    });
</script>

您还可以在包含方法IsAjaxRequest的HttpRequestWrapper中包装Context.Request(类型为HttpRequest)。

bool isAjaxCall = new HttpRequestWrapper(Context.Request).IsAjaxRequest();

你可以用它。

    private static bool IsAjaxRequest()
    {
        return HttpContext.Current.Request.Headers["X-Requested-With"] == "XMLHttpRequest";
    }

可以在客户端ajax调用中添加自定义标头。 请参阅http://forums.asp.net/t/1229399.aspx/1

尝试在服务器中查找此标头值。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM