Yii2 controller 传值给layout

在yii2中,我们通过下面的方法,将controller的数组传递给view

public function actionIndex()
    {
        $data = ['xx' => 'yy'];
        return $this->render($this->action->id,$data);
    }

在view文件中就可以使用$xx变量了,这个变量的值是’yy’.

现在我们想给layout里面传递,怎么办呢?下面是原理:

在yii/base/Controller.php中可以看到如下代码:

public function render($view, $params = [])
    {
        $content = $this->getView()->render($view, $params, $this);
        return $this->renderContent($content);
    }

查找renderContent()方法

public function renderContent($content)
   {
       $layoutFile = $this->findLayoutFile($this->getView());
       if ($layoutFile !== false) {
           return $this->getView()->renderFile($layoutFile, ['content' => $content], $this);
       }
       return $content;
   }

可以看到,我们只要重写renderContent()方法,在这个方法的内容部分:

[‘content’ => $content]

在这个数组中,添加上我们的想要的其他的数组,譬如:

[‘content’ => $content, ‘tt’ => ‘terry’]

我们就可以在layout里面使用$tt变量了。也就是将controller中的变量传递给layout。

 

 

《Yii2 controller 传值给layout》有1个想法

发表评论

电子邮件地址不会被公开。 必填项已用*标注