作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是对为什么我的 RedirectToRoute() 方法不起作用感到困惑。我有一个这样的 RouteConfig.cs 文件
routes.MapRoute(
"pattern1",
"{action}",
new { controller = "Home", action = "About" }
);
routes.MapRoute(
"pattern2",
"{controller}/{action}/{id}",
new { controller = "Admin", action = "Index", id = UrlParameter.Optional }
);
在此配置中,我的默认 Controller Home 和 Action About 被调用,现在在 Action 方法中,我使用以下值调用 RedirectToRoute() p>
public ActionResult Index()
{
return View();
}
public ActionResult About()
{
return RedirectToRoute("pattern2");
}
为什么 RedirectToRoute() 没有调用 Admin/Index 操作
最佳答案
这是因为您定义的路线。 RedirectToRoute() 重定向到您定义的路由。您为“pattern2”定义的 url 是“{controller}/{action}/{id}”。如果要使用仅接受 routeName 的重载,则需要在 RouteConfig 中明确定义 url。示例:
routes.MapRoute(
"pattern2",
"Admin/Index",
new { controller = "Admin", action = "Index", id = UrlParameter.Optional }
);
如果您不想显式定义 url,那么您需要使用不同的 RedirectToRoute() 重载,它接受 routeValues 对象。
关于asp.net-mvc - 如何在 MVC 中使用 RedirectToRoute ("routeName")?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40910018/
我是一名优秀的程序员,十分优秀!