cakephp控制器的add函数问题

时间:2013-08-10 17:40:43

标签: php cakephp add

在将用户输入用户表时遇到问题。 我去..users / add,我的表单按预期显示。我填写表格并按下提交按钮但没有任何反应。屏幕闪烁,显然什么也没做。没有新记录出现在名为users的数据库表中。

我可以在..users / index中查看所有现有的用户记录,这样就可以了。有什么想法吗?

控制器

<?php 

 class UsersController extends AppController {

public $helpers = array('Html', 'Form', 'Session');
public $components = array('Session');

public function index() {
    $this->set('users', $this->User->find('all'));
}

public function add() {
    if ($this->request->is('user')) {
        $this->User->create();
        if ($this->User->save($this->request->data)) {
            $this->Session->setFlash(__('User has been created.'));
            $this->redirect(array('action' => 'index'));
        } else {
            $this->Session->setFlash(__('Unable to create the user.'));
        }
    }
}
 }

&GT;

提前谢谢。 DS

1 个答案:

答案 0 :(得分:2)

我不知道您使用的是哪个版本的CakePHP,但根据CakePHP 2.0文档,没有这样的内置探测器user。尝试更改

$this->request->is('user')

$this->request->is('post')

参考:http://book.cakephp.org/2.0/en/controllers/request-response.html