1

我在 cakebook 上阅读,但仍然不明白。我在向数据库添加数据时遇到问题,所以我想检查我的基本添加功能的结果:

public function add() {
    if ($this->request->is('post')) {
        $this->Ficha->create();
        if ($this->Ficha->save($this->request->data)) {
            $this->Session->setFlash('Your post has been saved.');
            //$last_id=$this->Ficha->getLastInsertID();
            $this->redirect(array('action' => 'preencher_ficha'),$last_id);
        } else {
            $this->Session->setFlash('Unable to add your post.');
        }
        print_r($this->Ficha->save);
    }
}

添加.ctp 文件

<?php
echo $this->Form->create('Ficha', array('action' => 'index'));
echo $this->Form->input('cod_produto', array('label' => 'Código Produto:'));
echo $this->Form->input('nome_produto', array('label' => 'Nome Produto:'));
echo $this->Form->input('versao', array('label' => 'Versão:'));
echo $this->Form->input('data_ficha', array('label' => 'Data:'));
//echo $this->Form->input('body', array('rows' => '3'));
echo $this->Form->end('Criar Ficha');
?>

为此,我想使用 $debug 或 $print_r 以便在提交表单后 cakephp 会告诉我问题出在哪里,但我没有正确使用它,或者可能在错误的“部分”中。谁能告诉我应该使用哪个 var 来打印以及在输出的 var 的 () 之间应该有什么来打印屏幕上的 add 函数的结果?

谢谢!

4

1 回答 1

1

你可以在这里做一些调试:

public function add() {
    pr($this->request->data); // to get the data from the form
    die; // if you don't want it to continue to your save function
    if ($this->request->is('post')) {
        $this->Ficha->create();
        if ($this->Ficha->save($this->request->data)) {
            $this->Session->setFlash('Your post has been saved.');
            //$last_id=$this->Ficha->getLastInsertID();
            $this->redirect(array('action' => 'preencher_ficha'),$last_id);
        } else {
            $this->Session->setFlash('Unable to add your post.');
        }
    }
}

或者:

public function add() {
    if ($this->request->is('post')) {
        $this->Ficha->create();

        pr($this->Ficha->save($this->request->data)); // to print the result of the save
    }
}
于 2012-12-10T11:07:53.733 回答