CakePHP 元のページへリダイレクトさせる
cake PHP 1.2.3.8166.
データの編集(Edit) や 消去(Delete)の後は、できれば元のページへリダイレクトさせたいですよね。
Bakeなどで焼くとデフォルトは
$this->redirect(array('action'=>'index')
となっています。
元のページへのリダイレクトは
$this->redirect($this->referer());
とやればできます。
cake PHP 1.2.3.8166.
データの編集(Edit) や 消去(Delete)の後は、できれば元のページへリダイレクトさせたいですよね。
Bakeなどで焼くとデフォルトは
$this->redirect(array('action'=>'index')
となっています。
元のページへのリダイレクトは
$this->redirect($this->referer());
とやればできます。