yii2 中设置标题的两种方法

在Yii2中,页面标题是View类的一个公有成员(public)变量$title。
方法一、
要设置页面标题,首先在Controller/Action中设置$title的值,
TestController {  
    public funtion actionIndex() {  
        ...  
        $this->getView()->title = "your title";  
        return $this->render('index');  
    }  
}  
然后在layout中设置标题
title)."-网站架构" ?>  

方法二、
 在控制器中
  TestController {  
    public funtion actionIndex() { 
        ...  
        $title = "yii2 中设置标题的两种方法";  
        return $this->render('index',['title'=>$title]);  
    }  
} 
在view中
title = $title;
?> 
然后在layout中设置标题
title)."-网站架构" ?>

查看原文:http://www.architecy.com/archives/356

你可能感兴趣的:(yii2 中设置标题的两种方法)