url路由和actionmethod关系-asp mvc

发布于 2024-12-26 13:12:25 字数 234 浏览 1 评论 0原文

如果我想让url像这样:

www.site.com/UK/London/Jobs/98767

路由url就像:

...
"{countryCode}/{city}/Jobs/{jobId}"
...

所以这里我需要4个参数来构建这个url。 每当我调用它时,我应该在 actionmethod 中包含所有这四个参数吗?

If I want to make url like this:

www.site.com/UK/London/Jobs/98767

Routing url is like:

...
"{countryCode}/{city}/Jobs/{jobId}"
...

So here I need 4 parameters to build this url.
Should I have all this four parameters in actionmethod whenever I call it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ら栖息 2025-01-02 13:12:25

如果您像这样注册路线:

routes.MapRoute(
    "Default",
    "{countryCode}/{city}/Jobs/{jobId}}",
    new { controller = "Home", action = "Jobs"}
);

您的操作将需要 3 个参数:

public ActionResult Jobs(string countryCode, string city, int jobId)
{
    ...
}

第三个参数“Jobs”用于匹配路线,作为参数传递没有意义。

If you're registering your route like this:

routes.MapRoute(
    "Default",
    "{countryCode}/{city}/Jobs/{jobId}}",
    new { controller = "Home", action = "Jobs"}
);

Your action would need 3 parameters:

public ActionResult Jobs(string countryCode, string city, int jobId)
{
    ...
}

The 3rd parameter "Jobs" is used for matching the route and doesn't make sense to pass in as a parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文