関連する2つのモデルがあり、追加ビューでIDフィールドを非表示フィールドとして設定して、追加ビューに表示されないようにします。非表示に設定すると、フォームは表示されません。提出しないでください。id値を非表示フィールドとして渡す方法はありますか?
これが私の追加ビューです
<?php echo $this->Form->create('ItQueryComment'); ?>
<?php echo __('Add It Query Comment'); ?>
<?php
echo $this->Form->hidden('it_query_id');
echo $this->Form->input('comment');
?>
<?php echo $this->Form->end(__('Submit')); ?>
ItQueriesコントローラーの関数を追加します
public function add() {
if ($this->request->is('post')) {
$this->ItQuery->create();
if ($this->ItQuery->save($this->request->data)) {
$this->Session->setFlash(__('The it query has been saved'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The it query could not be saved. Please, try again.'));
}
}
$itQueryTypes = $this->ItQuery->ItQueryType->find('list');
$this->set(compact('itQueryTypes'));
}
前もって感謝します