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'));
}