yii2.0中如何引入js/css文件呢
yii2.0中如何引入js/css文件呢
慕尼黑的夜晚無(wú)繁華
2019-03-03 08:04:37
TA貢獻(xiàn)1844條經(jīng)驗(yàn) 獲得超8個(gè)贊
公共js在布局文件引入,也就是main.php
單獨(dú)view的js以及公共js都是使用$this->registerJs()
$this->registerJsFile()
$this->registerCss()
等方法引入
如果不行(上述方法一般可行,我在yii2就是這么用的),你可以使用use View;(前面的命名空間忘記了,你找一下,里面有上所述的方法)
然后實(shí)例化$view = new View(); 然后$this->registerJs()等等
TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超11個(gè)贊
<?php $this->beginBody() ?>
<?php echo $content;?>
<?php $this->endBody() ?>
<?php $this->head() ?><?php $this->beginPage() ?><?php
$this->endPage();?>加上就有了
舉報(bào)