如何在kohana中刷新/重新加载页面? [交/ PRG]

时间:2017-10-23 10:59:09

标签: php redirect http-post refresh kohana

我需要在表单成功提交后刷新注册页面,以防止页面重新加载多个submissons(清理$ _POST / $ _ REQUEST)。

目前我正在使用:

$this->redirect('news/create', 303);

我不想每次都指定路径,我可以使用哪种快捷方式?

更新:

我做了类似

的事情
$this->redirect("../" . $this->request->uri(), 303);

感谢@biakaveron。但它仍然很混乱,imho。

其他信息:

1 个答案:

答案 0 :(得分:0)

似乎$this->redirect($this->request->uri(), 303);是最短路的。