主页引入特定的css而其他页面没有,我想知道怎么做,我是新手,详细的给我说一下好吗,感激不尽
可以在视图中使用 registerCssFile 去额外引入特定的 css 文件。 使用方法如下:
registerCssFile
css
$this->registerCssFile('@web/css/custom.js', ['depends' => [BootstrapAsset::className()]]);
['depends' => [BootstrapAsset::className()]]这个是怎么用的,我没用这个也达到目的了
['depends' => [BootstrapAsset::className()]]
@kingzez: 这个是告诉资源管理器,你当前的css依赖于另外一个css文件,加载当前css之前要加载依赖的那一个。你没写这个,但是AppAsset.php里依赖了bootstrap,所以页面上也会加载
AppAsset.php
bootstrap
@大裤衩子: 哦(⊙o⊙)哦,嗖嘎,谢谢~