-1
public function urls($id = null) {
    $this->Movie->id = $id;
    $this->set('Movie' , $this->Movie->read(null, $id));
    if ($this->request->is('requested')) {
        return $this->set('Movie' , $this->Movie->read(null, $id));
    }
    if (!$this->Movie->exists()){
    $this->redirect(array('controller' => 'pages','action' => 'display'));
    }

}

这是我的视图功能,但它不起作用!,当页面加载时,做一个预测器

$this->redirect(array('action'=>'index'));

我不知道是什么问题,但是电影应用程序中的所有其他公共功能都运行良好,请帮助!

PS:我在用户应用程序中的删除功能有同样的问题

public function delete($id = null) {
    if (!$this->request->is('post')) {
        throw new MethodNotAllowedException();
    }
    $this->User->id = $id;
    if (!$this->User->exists()) {
        throw new NotFoundException(__('المستخدم مش صالح'));
    }
    if ($this->User->delete()) {
        $this->Session->setFlash(__('تم يا تيت'));
        $this->redirect(array('controller' => 'pages','action' => 'display'));
    }
    $this->Session->setFlash(__('الحمد لله , مترمتش , حاول تاني'));
    $this->redirect(array('controller' => 'pages','action' => 'display'));
}
4

2 回答 2

1

在这里我发现了一个错误。

$this->movie->exists(); 

不是正确的语法使用$this->Movie->exists() 而不是“电影”,您可以使用“电影”

希望这可以帮助

于 2012-10-26T11:23:33.773 回答
0

模型是“电影”,而不是“电影”。

看这里: http ://book.cakephp.org/2.0/en/getting-started/cakephp-conventions.html

于 2012-10-26T12:08:39.613 回答