我在UsersController.php文件中创建了一个方法,以便我的用户可以更改密码。 我的方法php代码是:
public function changepass() {
$this->User->id = $this->Auth->user('id');
if($this->User->exists()) {
$new_pass = $this->request->data['User']['newpass'];
$repeat_pass = $this->request->data['User']['newrepeat'];
if($new_pass == $repeat_pass) {
$this->User->saveField('password',$new_pass);
$this->Session->setFlash(__('Updated successfully'));
$this->redirect(array('controller' => 'users','action' => 'dashboard'));
} else {
$this->Session->setFlash(__('Passwords did not match'));
$this->redirect(array('controller' => 'users','action' => 'changepass'));
}
}
}
和我的changepass.ctp查看文件是:
<?php
echo $this->Form->create();
echo $this->Form->input('newpass',array('type'=>'text','label'=>array('text'=>'Enter new password')));
echo $this->Form->input('newrepeat',array('type'=>'text','label'=>array('text'=>'Confirm new password')));
?>
<button type="submit">Save</button>
<?php echo $this->Form->end(); ?>
当我尝试在users / changepass下浏览时,它返回了2个关于未定义索引的错误:
Notice (8): Undefined index: User [APP/Controller/UsersController.php, line 108]
Notice (8): Undefined index: User [APP/Controller/UsersController.php, line 109]
指着我代码的这一部分:
$new_pass = $this->request->data['User']['newpass'];
$repeat_pass = $this->request->data['User']['newrepeat'];
并且(立即)将我的数据库中的用户密码更改为空白。
我无法以任何方式找出错误。如果你能在这一点上帮助我,我将非常感激。
提前谢谢。
答案 0 :(得分:2)
您忘记了控制器中表单处理的一个重要部分:检查POST。
if ($this->request->is('post')) {
// only then try to access $this->request->data['User'] content!
}
如果不是帖子(get),你只需显示表单 - 特别是不试图保存任何内容。
提示:看看烘焙代码(使用蛋糕烘焙),您将看到它是如何正确完成的。