如何在url_for()函數中添加參數?我的意思是,我有這樣的路線:symfony:關於url_for的問題
category_set_representative_image:
url: /categoria-settare-immaggine-rappresentativa/:id
param: { module: category_new, action: setRepresentativeImage }
class: sfPropelRoute
options: { model: Category, type: object }
我想通過url_for('category_set_representative_image', $category)
生成的URL,但如何除了添加參數「:身份證」(圖像,這將是代表品類的id)?
SF 1.4
哈維