0

UsersController の add() 関数を書くと問題が発生します。

    public function add(){
        if ($this->request->is('post')) {
            if ($this->User->save($this->request->data)) {
                $this->Session->setFlash('The new user has been saved.');
                $this->redirect(array('action' => 'test'));
            }
        }
        $this->set('title_for_layout', 'Register');
    }

これは追加ビュー ctp です。

    <?php
    echo $this->Form->create('User');
    echo $this->Form->input('username');
    echo $this->Form->input('password');
    echo $this->Form->end('Save User');
    ?>

ユーザー/追加にアクセスしようとすると、常に内部エラーが発生します。誰でもこの問題に対処する方法を知っていますか? ありがとう。

4

1 に答える 1