大飞_dafei

导航

yii2 config_02

1. 前端资源, Yii2 前端资源管理

'components' => [
    'assetManager' => [//资源管理
        'bundles' => [
            'yii\bootstrap\BootstrapAsset' => false,//禁用 Twitter Bootstrap 框架的 CSS 文件
            'yii\validators\ValidationAsset' => false,
            'yii\web\YiiAsset' => false,
            'yii\widgets\ActiveFormAsset' => false,
            'yii\bootstrap\BootstrapPluginAsset' => false,
            'yii\web\JqueryAsset' => false,
            'dosamigos\selectize\SelectizeAsset' => [
                'depends' => [
                    \app\assets\AppAsset::class,
                ],
            ],
            'yii\web\JqueryAsset' => [
                'sourcePath' => null,   // 一定不要发布该资源
                'js' => [
                    '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js',
                ]
            ],
            'appendTimestamp' => true,//更新客户端缓存
        ]
    ],
],

 

第一篇地址: yii2 config 01

posted on 2018-12-13 10:21  大飞_dafei  阅读(93)  评论(0编辑  收藏  举报