在Yii2中,页面标题是View类的一个公有成员(public)变量$title。
方法一、
要设置页面标题,首先在Controller/Action中设置$title的值,
TestController {
public funtion actionIndex() {
...
$this->getView()->title = "your title";
return $this->render('index');
}
}
然后在layout中设置标题
<?= Html::encode($this->title)."-网站架构" ?>
方法二、
在控制器中
TestController {
public funtion actionIndex() {
...
$title = "yii2 中设置标题的两种方法";
return $this->render('index',['title'=>$title]);
}
}
在view中
title = $title;
?>
然后在layout中设置标题
<?= Html::encode($this->title)."-网站架构" ?>
查看原文:http://www.architecy.com/archives/356
yii2 中设置标题的两种方法
最新推荐文章于 2021-04-03 06:49:06 发布
本文介绍了在Yii2框架中设置页面标题的两种常见方法。第一种是在控制器的动作中直接设置视图对象的$title属性;第二种是通过控制器传递一个'title'变量到视图文件中,再由视图文件设置页面标题。
263

被折叠的 条评论
为什么被折叠?



