我觉得这很容易。假设,我在控制器的相应功能的视图中。该函数如下所示:
class SomeController extends AppController{
public function action(){
.
.
.
if($this->request->is('post')){
.
.
.
if(some error appears)
I want to get back to the "action" view with the data that was given to it before
else
continue processing
.
.
.
}
populate $data and send it to the view "action";
}
我的意思是,我只想随时随地回到特定的数据视图。我使用redirect(array('controller'=>'some','action'=>'action'))
,但它不起作用。使用render()
不会获取$ data。请帮帮我。
答案 0 :(得分:2)
您所描述的内容是所谓的flash messages,它们可以显示在您的视图中以告诉用户某些内容,例如保存操作失败或成功。您需要在应用程序中加载Session组件和帮助程序才能使用它们。所以在你的Controller(或AppController,如果你想在应用程序范围内使用它),添加:
public $components = array('Session');
public $helpers = array('Session');
然后在您的控制器中设置所需的flash消息:
if (!$this->Model->save($this->request->data)) {
// The save failed, inform the user, stay on this action (keeping the data)
$this->Session->setFlash('The save operation failed!');
} else {
// The save succeeded, redirect the user back to the index action
$this->redirect(array('action' => 'index'));
}
确保在视图中输出flash消息,只需回显:
echo $this->Session->flash();
那应该做你想要的。