yii2 config_02

大飛_dafei發表於2018-12-13

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