- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个完整的 web 应用程序,我正在使用 ASP.NET MVC 3 框架。我正在实现 ActionFilterAttribute
的子类.
我正在覆盖 OnActionExecuting
方法。如果在 OnActionExecuting
中捕获到异常方法我想重定向客户端浏览器。重定向 URL 以我的一个 Controller 中的操作方法为目标。我想从 Exception
传递数据对象进入重定向 URL。
有没有办法建立一个包含 Exception
的 URL对象,然后将 URL 传递到 RedirectResult
构造函数?
最佳答案
Is there a way to build a URL including the Exception object and then passing the URL into the RedirectResult constructor ?
var values = new RouteValueDictionary(new
{
action = "foo",
controller = "bar",
exceptiontext = "foo bar baz"
});
filterContext.Result = new RedirectToRouteResult(values);
public Action Foo(string exceptionText)
{
...
}
关于asp.net-mvc-3 - RedirectResult + Object 作为 URL 中的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9011470/
当 Controller 操作返回 RedirectResult 结果时,输出缓存过滤器似乎不适用。 以下是如何重现 ASP.Net MVC3 默认 Internet Web 应用程序的问题: 在 W
我正在尝试使用 T4MVC 设置 filterContext.Result = new RedirectResult 我现有的通话是: filterContext.Result = new Redir
我们的一个 Azure Functions(运行 2.0)应该返回一个 RedirectResult(由外部 webhook 触发,进行一些处理并且应该重定向到网页)。 这在我们的测试环境中有效,但在
我正在开发一个完整的 web 应用程序,我正在使用 ASP.NET MVC 3 框架。我正在实现 ActionFilterAttribute 的子类. 我正在覆盖 OnActionExecuting方
当我这样重定向时 protected override void OnActionExecuting(ActionExecutingContext filterContext) { f
我是一名优秀的程序员,十分优秀!