3

无法让 cakephp 更新记录。

控制器代码:

public function viewBenefit($id) {
    if ($this->request->is('post')) {
        $this->set('post', $this->request->data);
        $this->Benefit->id = $id;
        if ($this->Benefit->save($this->Benefit->data)) {
            $myVars['Sucsess'] = TRUE;
            $this->Session->setFlash('Updates Saved');
        } else {
            $myVars['NewID'] = 0;
            $myVars['Sucsess'] = False;
            $this->Session->setFlash('There was an error.');
        }
    }

    $this->Benefit->recursive = 2;
    $this->Benefit->id = $id;
    $this->set('benefit', $this->Benefit->read());
}

相关查看代码:

<?php echo $this->Form->create('Benefit',array('action'=>'edit','url' => '#')); ?>
<?php echo $this->Form->input('id',array('type'=>'hidden')) . "\n"; ?>
<?php echo $this->Form->input('short_description',array('type'=>'textarea')) . "\n"; ?>
<?php echo $this->Form->end(); ?>

注意:表格是通过 JS 提交的

POST 数据(通过 debug($post); )

array(
    'Benefit' => array(
        'id' => '1952e98e-f589-47d4-b458-11a1bd58ba3b',
        'short_description' => '<p>This is great sample insurance 321321</p>'
    )
)

SQL 更新语句:

UPDATE `c16memberdev`.`benefits` SET `modified` = '2012-12-04 10:45:16' WHERE `c16memberdev`.`benefits`.`id` = '1952e98e-f589-47d4-b458-11a1bd58ba3b'

如您所见,字段“short_description”没有添加到 SQL 语句中,因此数据没有添加到数据库中。谢谢你的帮助。

4

1 回答 1

2

尝试改变

$this->Benefit->save($this->Benefit->data)

$this->Benefit->save($this->request->data)
于 2012-12-04T17:29:49.447 回答