创建特定路由条目以访问区域内的控制器

发布于 2024-12-01 01:29:57 字数 390 浏览 0 评论 0原文

我想尝试将所有购物车处理保留在 MVC2 项目中单独“区域”内的 1 个控制器内。

但是,我需要将此控制器中的 1 个操作公开给一个已经存在很长时间的 URL,并且该 URL 不包含对该区域的任何引用。

我的区域和控制器设置为处理如下所示的请求(Commerce 是区域):

http://www.abc.com/Commerce/Buy/Select

但我必须响应的 URL 是:

http://www.abc.com/quote/

是否可以创建一个一次性路由规则来处理这是给我的?我知道我可以创建一个名为“Quote”的控制器并将其放置在商务区域之外,但我宁愿使用路由。

谢谢。

I want to try and keep all my shopping cart processing within 1 controller within a separate "Area" in MVC2 project.

However, I need to expose 1 action in this controller to a URL that has been around for a long time and that URL does not include any reference to the area.

My area and controller are setup to deal with requests that look like this (Commerce is the Area):

http://www.abc.com/Commerce/Buy/Select

But the URL that I'm having to respond to is:

http://www.abc.com/quote/

Is it possible to create a one-off routing rule that would take care of this for me? I know I could create a Controller called "Quote" and sit it outside the Commerce area but I'd rather make use of routing.

Thanks.

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

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

发布评论

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

评论(2

囍笑 2024-12-08 01:29:58

你试过这个吗?

        routes.MapRoute(
            "Quote", // Route name
            "/Quote/{id}", // URL with parameters
            new { area="Commerce", controller = "Buy", action = "Quote", id = UrlParameter.Optional } // Parameter defaults
        );

Have you tried this?

        routes.MapRoute(
            "Quote", // Route name
            "/Quote/{id}", // URL with parameters
            new { area="Commerce", controller = "Buy", action = "Quote", id = UrlParameter.Optional } // Parameter defaults
        );
风筝在阴天搁浅。 2024-12-08 01:29:58

抱歉,这很简单:

        routes.MapRoute(
            "Quote", // Route name
            "Quote/", // URL with parameters
            new { area = "Commerce", controller = "Buy", action = "Select" } // Parameter default
            );

Sorry, its easy as:

        routes.MapRoute(
            "Quote", // Route name
            "Quote/", // URL with parameters
            new { area = "Commerce", controller = "Buy", action = "Select" } // Parameter default
            );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文