0

ビューファイルで呼び出している要素があります。要素はadd.ctpである追加ビューです。現在私が抱えている課題は、要素がフォーム入力をテーブルに挿入していないことです(it_query_responses)。

ビュー内で要素を呼び出す方法は次のとおりです-

<?php echo $this->Element('ItQueryResponses/add'); ?>

ここに要素のコードがあります

<?php echo $this->Form->create('ItQueryResponse'); ?>
<legend><?php echo __('Add It Query Response'); ?></legend>
<?php
echo $this->Form->input('it_query_id');
echo $this->Form->input('hr_employee_id');
echo $this->Form->input('response');
echo $this->Form->input('it_query_status_id');
?>
<?php echo $this->Form->end(__('Submit')); ?>

ここに ItQueryResponsesController に関数を追加します

public function add() {
if ($this->request->is('post')) {
$this->ItQueryResponse->create();
if ($this->ItQueryResponse->save($this->request->data)) {
$this->Session->setFlash(__('The it query response has been saved'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The it query response could not be saved. Please, try again.'));
}
}
$itQueries = $this->ItQueryResponse->ItQuery->find('list');
$hrEmployees = $this->ItQueryResponse->HrEmployee->find('list');
$itQueryStatuses = $this->ItQueryResponse->ItQueryStatus->find('list');
$this->set(compact('itQueries', 'hrEmployees', 'itQueryStatuses'));
}
4

0 に答える 0