添加asp.net mvc 3的路由

发布于 2024-12-03 19:51:10 字数 185 浏览 1 评论 0原文

我需要能够处理这样的路线: appdomain/city/City-state,以防万一有人使用 appdomain/Washington/Washington-DC 他从正确的控制器操作中检索正确的信息。目前无法获取应该使用什么控制器和操作来获取此 url 并正确处理它。

为了澄清一点,这里没有控制器和动作,而是用 2 个参数代替它们。

I need to be able to hande routes like this:
appdomain/city/City-state, so in case somebody used
appdomain/Washington/Washington-DC he retrieves proper info from proper controller action. For now can`t get what controller and action it should be to get this url and handle it properly.

To clear it a bit, there`s like no controller and action, but 2 parameters instead of them.

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

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

发布评论

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

评论(2

十年不长 2024-12-10 19:51:10

为什么不从固定路径添加一点帮助,例如 Show-City

routes.MapRoute(
    "CityAndState",
    "Show-City/{city}/{state}",
    new { controller = "Cities", action = "Index", id = UrlParameter.Optional }
);

这永远不会干扰您现有的路线,然后您可以使用:

http://domain.com/Show-City/New York/NY

在您的 Index Action 内Cities Controller 你会得到类似的东西:~

public class CitiesController : Controller
{
    public ActionResult Index(string city, string state)
    {
        // use city and state variables here

        return View();
    }
}

Why not adding a little help from a fixed path, like Show-City

routes.MapRoute(
    "CityAndState",
    "Show-City/{city}/{state}",
    new { controller = "Cities", action = "Index", id = UrlParameter.Optional }
);

this will never interfere with your existing routes, and then you can use:

http://domain.com/Show-City/New York/NY

at your Index Action inside the Cities Controller you would have something like:~

public class CitiesController : Controller
{
    public ActionResult Index(string city, string state)
    {
        // use city and state variables here

        return View();
    }
}
另类 2024-12-10 19:51:10

试试这个:

routes.MapRoute("Foo", "{state}/{city}",
    new { controller = "ControllerName", action = "ActionName" });

在你的课堂上你会:

public class ControllerNameController : Controller {
    public ActionResult ActionName(string state, string city) {
         ...
    }
}

Try this:

routes.MapRoute("Foo", "{state}/{city}",
    new { controller = "ControllerName", action = "ActionName" });

and in your class you'd have:

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