标签: cakephp-3.0 formhelper
我有一个表格,方法= GET。
echo $this->Form->create(NULL, array('type' => 'get')); echo $this->Form->input('a'); echo $this->Form->input('b'); echo $this->Form->end();
但是在调用formpage/?a=1&b=2时,输入字段没有设置这些值。有没有办法将$this->request->query传递给表单助手以立即设置这些默认值?
formpage/?a=1&b=2
$this->request->query