1

目前我正在创建一个应用程序来管理我的 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 模型还很陌生,我的大部分代码都是使用我们在工作中运行的代码生成器制作的。

4

1 回答 1

0

只需让您的模型为父母和孩子使用不同的名称,如下所示:

public $belongsTo = array(
    'ProjecttaskParent' => array(
        'className' => 'Projecttask',
        'foreignKey' => 'itemreqs_rel_projectparents'
    ),
    'ProjecttaskChild' => array(
        'className' => 'Projecttask',
        'foreignKey' => 'itemreqs_rel_projectchilds'
    )
);

此外,如果您查看cake 模型约定,您会发现您并没有真正正确地设置来调用 cake 的最小配置的完整功能。它会起作用,但你需要做的比你应该做的更多。

于 2013-09-18T22:43:45.047 回答