在我使用管理生成器模块生成的 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