我有一个看起来像这样的控制器:
public class PageController : Controller
{
public ActionResult Render(string url)
{
//this is just for testing!
return Content("url was " + url);
}
}
我正在尝试将 url 的值传递给控制器。例如:
http ://www.site.com/products/something/else
将“products/something/else”传递到我的 PageController 的渲染操作中。
这是因为我们使用“products/something/else”作为数据库中记录的唯一键(旧系统,不要问)
所以,我的结果查询将是这样的:
select * from foo where urlKey = 'products/something/else'
到目前为止,我在 Global.asax 的 RegisterRoutes 部分中有这个:
routes.MapRoute("pages", "{*url}", new { controller = "Page", action = "Render", url="/" });
但这并没有按预期工作......
通过访问 www.site.com/products/something/else,传递到控制器的值是“home/index/0”
RegisterRoutes 中定义的唯一路由是问题中描述的路由。