Yii2.0设置网页布局:
1、在控制器中设置(成员变量)
- pubic $layout = "xxxx";//设置引用布局
- pubic $layout = false; //不使用布局
2、在操作中设置
- $this->layout = "xxxx"; //设置引用布局
- $this->layout = false; //不使用布局
3、在视图中设置
- $this->context->layout = "xxxx"; //设置引用布局
- $this->context->layout = false; //不使用布局