我想setValue
根据GET
要求进入 Form 课程。要在表单中设置值,我会这样做:
class BookingForm extends Form
{
$this->add(array(
'name' => 'end',
'type' => 'Text',
'options' => array(
'label' => 'Date to',
),
'attributes' => array(
'value' => '2013-09-18 15:45',
),
));
}
但它是硬编码的,我想避免这种情况,有方法$this->getRequest()->get('var to be extracted from url')
吗?