我认为这是
<?=$this->Form->create('Company')?>
<?=$this->Form->input('Company.company_category_id')?>
<?=$this->Form->input('Company.county')?>
<?=$this->Form->input('Company.name')?>
// Here i intend to insert all model fields in order to export them
<?=$this->Form->input('ExportField.company_category_id', array('label' => 'Categorie', 'type' => 'checkbox', 'options' => null))?>
// ...
<?=$this->Form->end('Submit')?>
我的问题是助手“自动”认为 ExportField.{field} 是表单的主要模型字段(在本例中为公司)。
我可以使用一种解决方法来解决这个问题,但我想知道我是否可以强制它以某种方式保持这种方法。
谢谢!