gpt4 book ai didi

asp.net-mvc - Asp.Net MVC 不在 url 中显示索引操作

转载 作者:行者123 更新时间:2023-12-04 21:00:53 24 4
gpt4 key购买 nike

我希望索引操作不会出现在 url 中。

例如,我想看

www.mywebsite.com/MyController/1

代替

www.mywebsite.com/MyController/Index/1

我必须在 Html.ActionLink 标记或 global.aspx 文件中做一些特别的事情吗?

最佳答案

试试这个为你的路线。

routes.MapRoute(
"Index",
"/{controller}/{id}",
new { controller = "Home", action = "Index" }
);

它将操作设置为“索引”的默认值

关于asp.net-mvc - Asp.Net MVC 不在 url 中显示索引操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/822840/

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