路由可以作为控制器名称的前缀吗? url 和控制器名称冲突问题
我希望我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,没问题。请记住,您也可以在路由中包含静态文本。
这里的关键是确保管理路由是第一位的,这样它就能首先破解匹配 URL 的问题。否则“正常”路线将吞噬它,因为它也匹配。
Sure, no problem. Remember you can have static text in routes as well.
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.