yii的layouts的使用

我们在控制器中使用render()时,yii会默认的载入布局。

1.在protected/componets下的Controller.php中修改$layout变量,
来指定自定义布局文件。

例: $layout='//layouts/mylayout';

2.在protected/views/layouts下创建mylayout.php布局文件。

3.在布局文件中加入你自已的代码,例:

xxxx header 公共头部样式 xxxx

<?php echo $content; ?>

xxxx footer 公共尾部样式 xxxx

4.在控制器$this->render();时你就会看到你的布局样式被渲染出来了。

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-02-17
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案