ActionResult确定后如何重定向?

发布于 2024-07-19 11:26:10 字数 974 浏览 6 评论 0原文

在 ASP.NET MVC 中,我想做类似的事情:

  • 让基本控制器检查 ActionResult 的类型。
  • 如果 ActionResultViewResult,则为所有视图加载一些共享数据。
  • 如果共享数据满足某些特定条件,则重定向到登录页面。

你将如何实施?


我考虑了以下内容,但似乎重定向不起作用(因为该操作已经执行?)。 有没有解决的办法?

public abstract class BaseController : Controller
{
    protected override void OnActionExecuted
        (ActionExecutedContext filterContext)
    {
        base.OnActionExecuted(filterContext);

        // If the result is a view result,
        // then it loads the shared data (for use in shared view):
        if (filterContext.Result is ViewResult)
            LoadSharedData();
    }

    private void LoadSharedData()
    {
        // TODO: Loads the data that is common for all views.
        // TODO: If the shared data fulfills some specific criteria,
        //       it will redirect to a login page.
        Redirect("http://someurl");
    }
}

In ASP.NET MVC I would like to do something like:

  • Let a base controller check for the type of the ActionResult.
  • If the ActionResult is a ViewResult, load some shared data for all views.
  • If the shared data fulfills some specific criteria, redirect to a login page.

How would you implement that?


I thought about the following, but it seems the redirect does not work (due to the action has already been executed?). Is there a way around this?

public abstract class BaseController : Controller
{
    protected override void OnActionExecuted
        (ActionExecutedContext filterContext)
    {
        base.OnActionExecuted(filterContext);

        // If the result is a view result,
        // then it loads the shared data (for use in shared view):
        if (filterContext.Result is ViewResult)
            LoadSharedData();
    }

    private void LoadSharedData()
    {
        // TODO: Loads the data that is common for all views.
        // TODO: If the shared data fulfills some specific criteria,
        //       it will redirect to a login page.
        Redirect("http://someurl");
    }
}

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

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

发布评论

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

评论(1

等风来 2024-07-26 11:26:10

我想我通过尝试找到了答案:

filterContext.Result = Redirect("http://someurl");

它有效。

I think I found an answer by trying this:

filterContext.Result = Redirect("http://someurl");

It works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文