欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Yii2框架视图(View)操作及Layout的使用方法分析

程序员文章站 2022-03-20 13:43:52
本文实例讲述了yii2框架视图(view)操作及layout的使用方法。分享给大家供大家参考,具体如下: 渲染视图 1.我们在default 控制器里做演示...

本文实例讲述了yii2框架视图(view)操作及layout的使用方法。分享给大家供大家参考,具体如下:

渲染视图

1.我们在default 控制器里做演示

<?php
namespace app\controllers;
use yii\helpers\url;
use yii\web\controller;
class defaultcontroller extends controller
{
  public function actionindex()
  {
//    echo url::toroute(['index','id'=>11],true);
//    //http://localhost/yiipro/web/default/index?id=11
//
//    echo url::base();
//    ///yiipro/web
    // 返回视图
    return $this->render('index');
  }
}

return $this->render('index'); 就是渲染视图

2.浏览器访问http://localhost/yiipro/web/index.php/default/,发现报错了

Yii2框架视图(View)操作及Layout的使用方法分析

views/default/index.php

说明视图文件要放在views/default 目录下。

我们去创建视图

Yii2框架视图(View)操作及Layout的使用方法分析

再次访问:

Yii2框架视图(View)操作及Layout的使用方法分析

3.如何向视图传递变量

return $this->render('index',['username'=>'张三','age'=>22]);

<p><?php echo \yii\helpers\html::encode($username); ?></p>
<p><?php echo \yii\helpers\html::encode($age); ?></p>

Yii2框架视图(View)操作及Layout的使用方法分析

布局layout

1.默认布局

Yii2框架视图(View)操作及Layout的使用方法分析

yii\base\application::$layout = 'main'
app\module\admin\module::$layout = 'main';

不使用layout,在控制器中加入属性public $layout = false
或方法中动态修改$this->layout = false
也可以使用$this->renderpartial()代替$this->render()

2.新建布局

view/layout/default.php

Yii2框架视图(View)操作及Layout的使用方法分析

我们要在default控制器里使用这个布局,写上:

public $layout = 'default';

浏览器效果:

Yii2框架视图(View)操作及Layout的使用方法分析

更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于yii框架的php程序设计有所帮助。