Yii2设置网页标题

在Yii2中,页面标题是View类的一个公有成员(public)变量$title。

要设置页面标题,首先在Controller/Action中设置$title的值,

TestController {
	public funtion actionIndex() {
		...
		$this->getView()->title = "your title";
		return $this->render('index');
	}
}

然后可以在layout中设置页面标题:

<title><?= Html::encode($this->title)."-踏得网云开发平台" ?></title>

by iefreer

你可能感兴趣的:(yii2)