yii中引入yiibooster后为何前台页面都引入了? [ 未指定版本 ]
yii中引入yiibooster后为何前台页面都引入了相关文件,怎么可以让某些页面不引入bootstrap文件啊?
金色木叶枫 补充于 2014-09-29 07:57
在模块初始化时加载:
public function init()
{
// import the module-level models and components
$this->setImport(array(
'admin.models.*',
'admin.components.*',
// 'ext.bootstrap.components.Bootstrap', // this will go to app config for components
));
Yii::app()->getComponent('bootstrap');// this does the loading
}
3.yiibooster模块初始化加载的另一种方法:
public function init()
{
// import the module-level models and components
$this->setImport(array(
'admin.models.*',
'admin.components.*',
));
$this->configure(array(
'components'=>array(
'bootstrap'=>array(
'class'=>'ext.bootstrap.components.Bootstrap'
)
)
));
金色木叶枫 补充于 2014-09-29 07:59
Bootstrap模块加载时的另一种方法经过测试此方法也可以 只在后台模块使用Bootstrap:
public function init()
{
// import the module-level models and components
$this->setImport(array(
'admin.models.*',
'admin.components.*',
));
$this->configure(array(
'preload'=>array('bootstrap'),
'components'=>array(
'bootstrap'=>array(
'class'=>'ext.bootstrap.components.Bootstrap'
)
)
));
$this->preloadComponents();
}
共 0 个回答
没有找到数据。
金色木叶枫 乌鲁木齐
注册时间:2013-07-01
最后登录:2017-10-17
在线时长:62小时10分
最后登录:2017-10-17
在线时长:62小时10分
- 粉丝21
- 金钱8685
- 威望70
- 积分10005