ASP.NET MVC:获取小写链接(而不是驼峰式大小写)
我所有动态生成的操作链接等都在创建类似 /Account/Setup 的链接。看起来很奇怪。
我希望所有链接都是小写的(意思是/account/setup)。有办法做到这一点吗?
All my dynamically generated action links etc. are creating links like /Account/Setup. It looks strange.
I'd like all my links to be lowercase (meaning /account/setup). Any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.NET Framework 4.5 中有一个更简单的解决方案,一个新属性 RouteCollection.LowercaseUrls,这里有一个示例
There is simpler solution in .NET Framework 4.5, a new property RouteCollection.LowercaseUrls, here's an example
看看 http://goneale.com /2008/12/19/lowercase-route-urls-in-aspnet-mvc/。您可以在另一个 stackoverflow 中找到更多信息 我怎样才能ASP.NET MVC 中有小写路由吗?。
到目前为止,其他帖子尚未解决导航到 Web 目录根目录的情况。 映射,您希望显示以下 URL:
mysite/home/
甚至mysite/home/index
如果您有一个指向 HomeController Index 操作的 Html 帮助程序函数的使用将改变以下事实:默认情况下,浏览器位置栏中将显示以下内容:
mysite/Home
或mysite/Home/Index
Take a look at http://goneale.com/2008/12/19/lowercase-route-urls-in-aspnet-mvc/. You can find more information in another stackoverflow at How can I have lowercase routes in ASP.NET MVC?.
The other posts thus far have not tackled the scenario where you navigate to the root of your web directory. If you have a mapping that directs to the HomeController Index action, you would like the following URL to appear:
mysite/home/
or evenmysite/home/index
No amount of Html helper function usage will change the fact that, by default, the following will be shown in the browser location bar:
mysite/Home
ormysite/Home/Index
为Html编写扩展方法:
然后使用Html.LowerActionLink而不是Html.ActionLink
Write an extension method for Html:
Then use Html.LowerActionLink instead of Html.ActionLink