Opencart的响应类:重定向和setOutput

时间:2019-05-17 04:17:20

标签: php opencart opencart2.x

我有一些代码需要更改:

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)”不会触发?

0 个答案:

没有答案