后台管理生成器 Symfony 中的 url_for 或 link_to

发布于 2024-12-02 09:56:13 字数 516 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

颜漓半夏 2024-12-09 09:56:13

您的路线已将标识符列定义为 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 to

url_for('news/edit?news_id=2')

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