gpt4 book ai didi

asp.net - RedirectToAction 替代方案

转载 作者:行者123 更新时间:2023-12-02 14:04:20 26 4
gpt4 key购买 nike

我正在使用 ASP.NET MVC 3。

我编写了一个辅助类,如下所示:

public static string NewsList(this UrlHelper helper)
{
return helper.Action("List", "News");
}

在我的 Controller 代码中,我这样使用它:

return RedirectToAction(Url.NewsList());

重定向后链接如下所示:

../News/News/List

是否有 RedirectToAction 的替代方案?有没有更好的方法来实现我的帮助方法 NewsList?

最佳答案

其实你并不真正需要 helper :

return RedirectToAction("List", "News");

或者如果您想避免硬编码:

public static object NewsList(this UrlHelper helper)
{
return new { action = "List", controller = "News" };
}

然后:

return RedirectToRoute(Url.NewsList());

或者另一种可能性是使用 MVCContrib它允许您编写以下内容(这是我个人喜欢和使用的):

return this.RedirectToAction<NewsController>(x => x.List());

或者另一种可能性是使用 T4 templates .

所以由你来选择和玩。

<小时/>

更新:

public static class ControllerExtensions
{
public static RedirectToRouteResult RedirectToNewsList(this Controller controller)
{
return controller.RedirectToAction<NewsController>(x => x.List());
}
}

然后:

public ActionResult Foo()
{
return this.RedirectToNewsList();
}
<小时/>

更新2:

NewsList 扩展方法的单元测试示例:

[TestMethod]
public void NewsList_Should_Construct_Route_Values_For_The_List_Action_On_The_News_Controller()
{
// act
var actual = UrlExtensions.NewsList(null);

// assert
var routes = new RouteValueDictionary(actual);
Assert.AreEqual("List", routes["action"]);
Assert.AreEqual("News", routes["controller"]);
}

关于asp.net - RedirectToAction 替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4863713/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com