我有一些代码需要更改:
Pseudo:
index()
{
if(method POST)
{
doSomething();
$this->response->redirect(here the expression, what forming the URL of this page);
}
** here creating $data for *.tpl **
$this->response->setOutput($tpl_file, $data));
}
此代码运行良好。但是我不明白,如果每次当方法POST调用索引时,页面必须在没有$ data和$ tpl的情况下加载,但是不会。
还是当导致“重定向”时,索引会第二次调用,然后“ if(post)”不会触发?