Yii2视图布局没有看到带有AppAsset捆绑包的任何js,css文件

时间:2018-07-14 17:40:49

标签: php yii yii2 yii2-advanced-app

Yii2高级模板,PHP 5.6,Ubuntu 16.04,nginx。

我有以下myproject/backend/assets/AppAsset.php

class AppAsset extends AssetBundle {
    public $basePath = '@webroot';

    public $css = [
        '/css/style.css', 
        '/plugins/iCheck/square/blue.css', 
        '/plugins/datatables/dataTables.bootstrap.css', 
        '/css/AdminLTE.min.css'
    ];

    public $js = [
        'admin/js/common.js',
        'plugins/datatables/jquery.dataTables.js',
        'plugins/datatables/dataTables.bootstrap.js',
        'plugins/iCheck/icheck.min.js' 
    ];

    public $depends = [
        'yii\web\YiiAsset',
        'yii\bootstrap\BootstrapAsset'
    ];
}

布局具有:

use backend\assets\AppAsset;
AppAsset::register($this);

添加main.php包后,这就是我的布局AppAsset

<?php
use backend\assets\AppAsset;
use yii\helpers\Html;
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs;

AppAsset::register($this);

/* @var $this \yii\web\View */
/* @var $content string */

?>
<?php //$this->beginPage() ?>
<!DOCTYPE html>
<html lang="<?= Yii::$app->language ?>">
<head>
    <meta charset="<?= Yii::$app->charset ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?= Html::csrfMetaTags() ?>
    <?php
    //$assets_base = Yii::$app->controller->getAssetsBase();
    ?>

    <title>MyProject</title>
    <?php $this->head() ?>
</head>
<body class="login-page">
<?php $this->beginBody() ?>
<h1>Test!!!</h1>
<?= $content ?>

<?php $this->endBody() ?>
</body>
</html>
<?php

所有css和js文件都位于公用文件夹webmyproject/backend/web)中。

当我重新加载页面标签时,<head>仅具有

<meta charset="UTF-8">
    <meta name="viewport" 
  <meta name="csrf-param" 
<meta name="csrf-token"

1 个答案:

答案 0 :(得分:3)

您应该从此行中删除评论:

<?php //$this->beginPage() ?>
需要

$this->beginPage()才能启用输出缓冲,这需要注入资产链接来代替$this->head()调用。

通常,除非您真的知道自己在做什么,否则不应从应用程序模板的默认布局中删除任何方法调用,因为它们是有原因的。