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

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 -->

 

posted @ 2016-05-17 18:18  雨落知音  阅读(292)  评论(0编辑  收藏  举报