gpt4 book ai didi

asp.net-mvc - 如何在 ASP.NET MVC 中构造 moSTLy 静态页面

转载 作者:行者123 更新时间:2023-12-01 09:38:23 26 4
gpt4 key购买 nike

我主要有静态 View 页面,例如:

http://www.yoursite.com/games/x-box-360/nba-2k-11.aspx http://www.yoursite.com/games/psp/ben-10.aspx

如何在我的 Controller 中构造它?这是我之前在游戏 Controller 中编写的代码:

[HandleError]
public class GamesController : Controller
{
public ActionResult ben-10()
{
return View();
}
}

但由于 Controller 操作名称中的连字符,它给了我一个错误。

我该如何解决这个问题?

最佳答案

您可能需要某种“包罗万象”的路线:

"/games/{platform}/{game}"

您可以将此路由重定向到 Controller 方法:

public class GamesController : Controller
{
public ActionResult ViewGame(string platform, string game)
{
// do whatever
return View();
}
}

关于asp.net-mvc - 如何在 ASP.NET MVC 中构造 moSTLy 静态页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3870754/

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