后台管理生成器 Symfony 中的 url_for 或 link_to
在 backend_dev 中,我使用管理生成器模块生成新闻:
localhost/backend_dev.php/news/2/edit
这是编辑新闻 ID 2 的链接。我如何为其他 ID 生成此链接?
url_for('news/edit?id=2')
不起作用,输出是:
localhost/backend_dev.php/news/edit/action?id=1
在路由中我只有:
news:
class: sfDoctrineRouteCollection
options:
model: News
module: News
prefix_path: /news
column: news_id
with_wildcard_routes: true
in backend_dev i generated with admin generator module News:
localhost/backend_dev.php/news/2/edit
this is link for edit News ID 2. How can i generate this link for other ID?
url_for('news/edit?id=2')
doesnt work, output is:
localhost/backend_dev.php/news/edit/action?id=1
In routing i have only:
news:
class: sfDoctrineRouteCollection
options:
model: News
module: News
prefix_path: /news
column: news_id
with_wildcard_routes: true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的路线已将标识符列定义为
news_id
,因此请尝试将您的网址创建更改为url_for('news/edit?news_id=2')
Your route has defined the identifier column as
news_id
, so try changing your url creation tourl_for('news/edit?news_id=2')