Symfony 2 - 从其他包内的包中执行操作
我对这个概念有疑问:我想要捆绑论坛(显示评论、添加新内容等),但我想在另一个捆绑中显示它(比如说 url:/articles/showforum)。我可以在 /articles/showforum 中包含论坛,但链接将是旧的(例如,显示添加新主题的表单:/forum/newtopic)。我想要 /articles/showforum/forum/newtopic 之类的东西 - Symfony 2 中有这样的工具可以实现这一点吗?
I have problem with that concept: I want to have bundle forum (display comments, adding new, etc.), but I want to display it in another bundle (lets say url: /articles/showforum). I can include forum inside /articles/showforum, but links will be the old ones (e.g. to show form to add new topic: /forum/newtopic). I want sth like /articles/showforum/forum/newtopic - is there such a tool in Symfony 2 to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为您的 ForumBundle 设置基本路由。这里使用注释:
一个基本的 editAction 方法:
You can set base routing for your ForumBundle. Here using annotations:
A base editAction method: