路由可以作为控制器名称的前缀吗? url 和控制器名称冲突问题

发布于 2024-08-18 14:04:35 字数 433 浏览 2 评论 0原文

我希望我的 url 结构如下所示:

www.stackoverflow.com/order/...

www.stackoverflow.com/admin/order/...

现在以上两个都使用不同的控制器。

/controllers/ordercontroller
/controllers/admin/ordercontroller

有没有办法让我拥有这个 url 结构?

我在想我是否可以这样做:

/controllers/ordercontroller
/controllers/admin/adminordercontroller

并且以某种方式,在我的路线中,在所有与管理相关的控制器的名称前面加上 'admin' ?

I want my urls structure to be like this:

www.stackoverflow.com/order/...

www.stackoverflow.com/admin/order/...

Now both of the above are using different controllers.

/controllers/ordercontroller
/controllers/admin/ordercontroller

Is there a way that I can have this url structure?

I was thinking if I could do this:

/controllers/ordercontroller
/controllers/admin/adminordercontroller

And somehow, in my routes, prefix the name of all the admin related controllers with 'admin' ?

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

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

发布评论

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

评论(1

爱的那么颓废 2024-08-25 14:04:35

当然,没问题。请记住,您也可以在路由中包含静态文本。

routes.MapRoute("admin", "admin/{controller}/{action}/{id}", ....

routes.MapRoute("normal", "{controller}/{action}/{id}", ...

这里的关键是确保管理路由是第一位的,这样它就能首先破解匹配 URL 的问题。否则“正常”路线将吞噬它,因为它也匹配。

Sure, no problem. Remember you can have static text in routes as well.

routes.MapRoute("admin", "admin/{controller}/{action}/{id}", ....

routes.MapRoute("normal", "{controller}/{action}/{id}", ...

The key thing here is to make sure that the admin route is first, so that it has first crack at matching the URL. Otherwise the "normal" route will swallow it, because it also matches.

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