问题:加载了 frontendassetsAppAsset
资源包,但是 bootstrap.js
文件没有被加载,打开 vendoryiisoftyii2-bootstrapsrcBootstrapAsset.php
,只加载了 css/bootstrap.css。
但是首页会自动载入bootstrap.js
文件,后来发现因为在 layout/main.php
中用到了 NavBar(导航)组件,在导航中会依赖 bootstrap 的 js 包。
解决方法:使用 /vendor/yiisoft/yii2-Bootstrap/BootstrapPluginAsset.php
在frontendassetsAppAsset.php中,引入'yiiootstrapBootstrapPluginAsset',
<?php
namespace frontendassets;
use yiiwebAssetBundle;
/**
* Main frontend application asset bundle.
*/
class AppAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
'css/site.css',
];
public $js = [
];
public $depends = [
'yiiwebYiiAsset',
'yiiootstrapBootstrapAsset',//bootstrap.css
'yiiootstrapBootstrapPluginAsset',//bootstrap.js
];
}