YII总结学习6(在一个视图中显示另外一个视图)

Posted 雨落知音

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了YII总结学习6(在一个视图中显示另外一个视图)相关的知识,希望对你有一定的参考价值。

controller\hello
<?php
    namespace app\controllers;

    use yii\web\Controller;

    class helloController extends Controller
    {

        public function actionIndex(){
        
            return $this->renderPartial("index");
        
        }
    }
?>


view\hello\about.php
    hello about!
    <?=$v_hello_str;?>

view\hello\index.php
    hello index!
    <?php echo $this->render("about",array("v_hello_str"=>"hello world!"));?><!--视图组件 $this -->

 

以上是关于YII总结学习6(在一个视图中显示另外一个视图)的主要内容,如果未能解决你的问题,请参考以下文章

在 Yii 框架视图中使用 if-else php 代码是不是可取?

关于Yii2中的MVC中的视图总结(持续更新中)

Yii2 - 在视图的 index.php 中渲染 _search.php 文件

Yii2-如何在网格视图中添加搜索框

YII2 根据用户 id 在视图文件中显示数据

yii2 mpdf 视图显示调试工具栏代码