我正在使用ActionFilter来确定用户是否可以访问特定资源,例如Account对象(犀牛安全),然后再触发一个动作.这是一个全局过滤器,如果授权值失败,则重定向到错误页面
filterContext.Controller.TempData["ErrorMessage"] = string.Format("You are not authorized to perform operation: {0}",operation); filterContext.Result = new RedirectResult("~/Error/AuthorizationError");
Ajax请求我不想应用重定向,而是返回错误消息.有没有办法告诉内部的动作过滤器,如果这是一个AJAX请求或常规的全页(抱歉不确定正确的术语)请求?
提前致谢
J.P
解决方法
您可以使用
IsAjaxRequest扩展方法:
if (filterContext.HttpContext.Request.IsAjaxRequest()) { // it was an AJAX request ... } else { // it was a standard request filterContext.Controller.TempData["ErrorMessage"] = string.Format("You are not authorized to perform operation: {0}",operation); filterContext.Result = new RedirectResult("~/Error/AuthorizationError"); }