禁用yii默认加载jQuery库,加载自己的js库

 

In main.php config file add the following code into components array:

 

 

'components' => [
   
 'cache' => [
       
 'class' => 'yii\caching\FileCache',
    ] ,
   
 'assetManager' => [
       
 'bundles' => [
           
 /*// 禁用 (bootstrap.css)
            'yii\bootstrap\BootstrapAsset' => [
                'css' => [],

            ] ,
            //
 禁用 JS (bootstrap.js)
            'yii\bootstrap\BootstrapPluginAsset' => [
                'js' =>[]
            ],
            //
 禁用 JQuery (jquery.js)
            'yii\web\JqueryAsset' => [
                'js' =>[]
            ],*/
            //
 改变默认加载的jQuery版本
           
 'yii\web\JqueryAsset' => [
               
 'sourcePath' => null,
               
 'basePath' => '@webroot',
               
 'baseUrl' => '@web',
               
 'js' => [
                   
 'js' => [
                       
 // 开发模式下不加载 .min压缩文件
                       
 YII_ENV_DEV ? 'js/jquery-1.11.3.js' : 'js/jquery-1.11.3.min.js' ,
                    ]
                ]
            ],
        ] ,
    ] ,
],

 

 

来自于datou:https://github.com/datou-leo/ci

posted @ 2015-06-09 11:22  开源  阅读(200)  评论(0编辑  收藏  举报