내가보기에이이CakePHP 양식 입력 - 기본값을 방지 하시겠습니까?
<?=$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. (이 경우 회사) 형태의 메인 모델 필드 인 것으로 {필드}.
이 문제를 해결하기 위해 해결 방법을 사용할 수는 있지만 어떻게 든 강제로이 접근법을 유지할 수 있는지 알고 싶습니다.
감사합니다. 케이크 문서가 말했듯이 All parameters are optional,
<?=$this->Form->create('Company')?>
:
'양식의 기본 모델 필드'란 무엇을 의미합니까? –
첫 번째 매개 변수로 create 메소드에 전달한 값. – Michael
당신이 가지고있는대로 잘 작동합니다. 그것이 생성하는 HTML 코드를 게시 하시겠습니까? – Dave