我想根据页面标题
默认 url 使用没有控制器和操作的 url 来服务器动态页面:domain.com/pages/details/1
我希望这是服务器
domain.com/title-of-dynamic-page-in-db-space-replaced-with-dash
domain.com/about-us
domain.com/contact-us
如果我在没有破折号的情况下这样做,那么路由会与controller
名称混淆,
这就是我-
为动态页面添加破折号的原因
我的动作看起来像这样
// GET: Pages/View/5
public ActionResult View(string id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
Page page = db.Pages.First(p => p.name_english == id.Replace("-"," "));
if (page == null)
{
return HttpNotFound();
}
}
我的路线是
routes.MapRoute(
name: "aaaaa",
url: "{id}",
defaults: new { controller = "pages", action = "view" },
constraints: new { id = @"^[A-Za-z\d-]+$" } //*********help needed in this line ******************************
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
上述约束^[A-Za-z\d-]+$
接受 alpha(optional)
numeric(optional)
并dash(optional)
当我需要alpha(optional)
numeric(optional)
和dash(*mandatory*)
这样路由引擎不会将页面标题与控制器/动作混淆,因为我将确保我的动态页面名称将包含空格(我用破折号替换)
并且我的控制器/动作不会被命名为包含破折号
还告诉我,这种方法是否可行,是否有其他优化解决方案?