Rendering controller to a different view in CakePHP

后端 未结 7 1162
长发绾君心
长发绾君心 2021-02-01 16:10

Is there a way to render a controller to a different view then normal? I\'m trying to pass some data from the controller to a non-default view. Meaning my controller is called:<

7条回答
  •  渐次进展
    2021-02-01 16:41

    Try to put the name of the view without .ctp extension.

    $this->render('file');
    

提交回复
热议问题