2014-09-27 18:37:14 4065次浏览 0条回答 0 悬赏 0 金钱

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();
}
    没有找到数据。
您需要登录后才可以回答。登录 | 立即注册
金色木叶枫
CEO

金色木叶枫 乌鲁木齐

注册时间:2013-07-01
最后登录:2017-10-17
在线时长:62小时10分
  • 粉丝21
  • 金钱8685
  • 威望70
  • 积分10005

热门问题