0
我用Symfony生成了簡單的模型。如何用表單GET屬性保存?
Job:
columns:
from_get: { type: integer, notnull: true }
type: { type: string(255) }
在JobForm.class.php
:
$this->setWidget('from_get', new sfWidgetFormInputHidden());
,我有行動:
http://mysite.com/job/new?get=3
我怎麼能保存ID = 3自動from_get?
在JobForm.class.php
$this->setDefault('from_get', $this->request->getParemeter('get'));
犯規的工作。