gpt4 book ai didi

cakephp - 如何更改cakephp default.ctp布局目录?

转载 作者:行者123 更新时间:2023-12-02 18:25:27 25 4
gpt4 key购买 nike

我可以使用 Controller 单独更改 cakephp 默认布局。例如我使用过

public function login() {
$this->layout="make"; //here I have changed layout for single action

if ($this->request->is('post')) {
//some code...
}
}

这里我改变了布局!但问题是这个布局不是默认的。我想为所有 Controller 应用这个布局。我该怎么做?

最佳答案

在你的AppController中

public function beforeRender() {
parent::beforeRender();

$this->layout = 'custom';
}

关于cakephp - 如何更改cakephp default.ctp布局目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22606882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com