我已使用$ this-> query()在表格中插入数据,然后在页面上显示数据,但它不显示最新的插入数据。刷新页面时,它会显示最新的插入数据。所以我使用$ this-> redirect()重定向到同一页面,但它显示了一个空白页面。
答案 0 :(得分:1)
将当前页面网址作为参数添加到$this->refresh
。
http://book.cakephp.org/2.0/en/controllers.html#flow-control
像
这样的东西 $this->redirect('/customers/index');
或
$this->redirect(array('action' => 'index');
答案 1 :(得分:0)
$this->redirect(array('controller'=>'users','action'=>'index'))