gpt4 book ai didi

asp.net-mvc-3 - MVC3 MapRoute,带斜杠的参数

转载 作者:行者123 更新时间:2023-12-04 23:29:59 27 4
gpt4 key购买 nike

我将如何创建一个接受斜杠而不将其视为新参数的 MapRoute?
如果网址是

http://localhost/root/p1/default.aspx

我想要一个参数来获取 localhost (root/p1/default.aspx) 之后的所有内容。通常它需要三个参数,因为有两个斜杠,而 maproute 用斜杠分隔参数。
所以如果路线看起来像
routes.MapRoute(
"URLMapRoute",
"{path}",
new { controller = "Home", action = "Index", path = "default.aspx" }
);

然后 {path} 获取所有内容,即使 url 包含斜杠。

最佳答案

你可以使用一个包罗万象的路线:

routes.MapRoute(
"URLMapRoute",
"{*path}",
new { controller = "Home", action = "Index", path = "default.aspx" }
);

进而:
public ActionResult Index(string path)
{
...
}

关于asp.net-mvc-3 - MVC3 MapRoute,带斜杠的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6557693/

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