yii2去掉jquery的方法:1、编辑appasset.php文件,注释掉变量$depends里的“yiiwebyiiasset”值;2、编辑main.php文件,在字段“components”下面添加配置为“'yiiwebjqueryasset' => ['js' => [],'sourcepath' => null,],”即可去掉jquery脚本。
本文操作环境:Windows10系统、yii2.0版、Dell G3电脑。
yii2 怎么去掉jquery?
Yii2 中彻底禁用掉自带的 Yii、JQuery 和 Bootstrap 脚本 [ 2.0 版本 ]
默认情况下,Yii2 会自动加载 Yii、JQuery 和 Bootstrap 等脚本和样式,但有时项目中可能并不需要这些库,或者使用其他版本;下面介绍如何去掉这些库脚本和样式。
▪ 去除 Yii.js 相关脚本
编辑 frontendassetAppAsset.php 文件,注释掉变量 $depends 里的 'yiiwebYiiAsset' 值。
编辑 frontendconfigmain.php 文件,在字段 'components' 下面添加配置:
'assetManager' => [ 'bundles' => [ 'yiiwebYiiAsset' => [ 'js' => [], // 去除 yii.js 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], 'yiiwidgetsActiveFormAsset' => [ 'js' => [], // 去除 yii.activeForm.js 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], 'yiivalidatorsValidationAsset' => [ 'js' => [], // 去除 yii.validation.js 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], ], ],
▪ 去除 JQuery 脚本
编辑 frontendconfigmain.php 文件,在字段 'components' 下面添加配置:
'assetManager' => [ 'bundles' => [ 'yiiwebJqueryAsset' => [ 'js' => [], // 去除 jquery.js 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], ], ],
去除 Bootstrap 库
编辑 frontendassetAppAsset.php 文件,注释掉变量 $depends 里的 'yiiootstrapBootstrapAsset' 值。
编辑 frontendconfigmain.php 文件,在字段 'components' 下面添加配置:
'assetManager' => [ 'bundles' => [ 'yiiootstrapBootstrapAsset' => [ 'css' => [], // 去除 bootstrap.css 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], 'yiiootstrapBootstrapPluginAsset' => [ 'js' => [], // 去除 bootstrap.js 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], ],
],
推荐:《》
以上就是yii2 怎么去掉jquery的详细内容,更多请关注本站点其它相关文章!
本文地址:https://www.stayed.cn/item/27448
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我