目前我正在创建一个应用程序来管理我的 TO-DO 活动。
在我的数据库模型中,我创建了一个引用任务表的表,这样我就可以为任务创建需求。这样,我只能在完成所需任务时开始/显示列表中的任务。
模型:
该功能完美运行,但我在您的视图中接收变量的 cakephp 方式存在问题。
由于父 ID 和子 ID 都是 [projecttasks][projecttasks_name],因此最后一个会覆盖第一个,从而在页面上显示:
但是当我单击编辑时,您可以看到它实际上已正确保存:
现在,在代码中,它在视图中看起来像这样:
<?php foreach ($itemrequirements as $itemrequirement): ?>
<tr>
<td><?php echo h($itemrequirement['Projecttask']['projecttasks_name']); ?></td>
<td><?php echo h($itemrequirement['Projecttask']['projecttasks_name']); ?></td>
<td class="actions">
<?php echo $this->Html->link('View',array('action' => 'detail', $itemrequirement['Itemrequirement']['itemreq_id'])); ?>
<?php echo $this->Html->link('Edit',array('action' => 'edit', $itemrequirement['Itemrequirement']['itemreq_id'])); ?>
<?php echo $this->Form->Postlink('Delete',array('action' => 'delete', $itemrequirement['Itemrequirement']['itemreq_id']),
null, sprintf('Are you sure you want to delete %s?', $itemrequirement['Itemrequirement']['itemreq_id'])); ?>
</td>
</tr>
<?php endforeach; ?>
控制器:
public function index() {
// write redirect information for screens into session
$this->Session->write('Redirector.controllername', 'itemrequirements');
$this->Session->write('Redirector.controllerfunction', 'index');
$this->Session->write('Redirector.recordindex', NULL);
// build index
$this -> Itemrequirement -> recursive = 0;
$this -> set('itemrequirements', $this -> paginate());
// get total record count
$totalItemrequirements = $this -> Itemrequirement -> find('count');
// expose total-count to the view
$this -> set('totalItemrequirements', $totalItemrequirements);
}
我问过我的老板,他指出了这部分(模型文件)。以为我会分享。
/**
* declare BelongsTo relations
*
* @var array $belongsTo
* @link http://book.cakephp.org/2.0/en/models/associations-linking-models-together.html#belongsto BelongsTo docs (CakePHP cookbook)
*/
public $belongsTo = array(
'Projecttask' => array(
'className' => 'Projecttask',
'foreignKey' => 'itemreqs_rel_projectparents'
),
'Projecttask' => array(
'className' => 'Projecttask',
'foreignKey' => 'itemreqs_rel_projectchilds'
)
);
有什么办法可以让视图正常工作吗?我对 MVC 模型还很陌生,我的大部分代码都是使用我们在工作中运行的代码生成器制作的。