Yii 2.0, View 常用位置标识
Yii 2.0 View中代表位置的常用标识有5个,分别是beginPage, head(), beginBody(), endBody(), endPage(), 本文介绍如何正确的在view层使用这5个标识,如果不正常配置可能会导致js或css无法注册
{ Demo }
<?php $this->beginPage()?>
<!DOCTYPE html>
<html lang="<?= Yii::$app->language ?>">
....
<head>
<meta charset="<?= Yii::$app->charset ?>">
...
<?= Html::csrfMetaTags()?>
<title><?= Html::encode($this->title) ?></title>
<?php $this->head()?>
</head>
<body>
<?php $this->beginBody()?>
...
<?php $this->endBody()?>
</body>
</html>
<?php $this->endPage()?>
留言