gpt4 book ai didi

php - 在 cakephp 中分配布局

转载 作者:可可西里 更新时间:2023-10-31 23:51:44 25 4
gpt4 key购买 nike

我们可以在那个特定的 Controller 中为整个 Controller 定义一个布局吗?我之前已经为此目的使用了 appcontroller 之前的过滤器,但它不再解决它了。所以我需要在 Controller 中应该有一些布局定义将适用于该 Controller 的所有操作。

问候

最佳答案

使用它:

在你的行动中

$this->layout = 'mylayout';

你必须在 view/layout/mylayout.ctp 中创建布局

或者在controller中添加这个函数来为controller的每个action设置layout

  function beforeFilter() {
parent::beforeFilter();
$this->layout = 'mylayout';
}

关于php - 在 cakephp 中分配布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7426469/

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