zoukankan      html  css  js  c++  java
  • yii控制布局方式

    1:在控制器内成员变量设置
    public $layout = false; //不使用布局
    public $layout = “main”; //设置使用的布局文件

    2:在控制器成员方法内设置
    $this->layout = false; //不使用布局
    $this->layout = “main”; //设置使用的布局文件

    3:在视图views中选择布局设置
    $this->context->layout = false; //不使用布局
    $this->context->layout = ‘main’; //设置使用的布局文件

  • 相关阅读:
    java后端
    2017-12-11
    二叉树与分治法整理
    javaweb
    安装docker
    爬虫
    lintcode
    DEEPlearning
    剑指offer_by牛客网
    DFS
  • 原文地址:https://www.cnblogs.com/JahanGu/p/7483608.html
Copyright © 2011-2022 走看看