How can I add conditions to yii2 depends in AppAsset class?(如何在 AppAsset 类中向 yii2 依赖项添加条件?)
问题描述
在 Yii2 的 AppAsset 类中有一些依赖:
There are some depends in AppAsset class in Yii2:
public $depends = [
'yiiwebYiiAsset',
'yiiootstrapBootstrapAsset'
];
有没有办法像我用 css 和 js 那样为此依赖添加条件?
Is there any way to add conditions for this depends like I do it with css and js?
public $jsOptions = ['condition' => 'lt IE 7'];
或者,您知道另一种向 bootstrap 和 yii JS 和 CSS 文件添加条件的方法吗?
谢谢
Or, may be, you know another way to add conditions to bootstrap and yii JS and CSS files?
Thanks
UPD:我已添加到 config/web.php:
UPD: I've added to config/web.php:
'components' => [
'assetManager' => [
'bundles' => [
'yiiwebYiiAsset' => [
'jsOptions' => ['condition' => 'lt IE 7'],
],
'yiiootstrapBootstrapAsset' => [
'jsOptions' => ['condition' => 'lt IE 7'],
],
],
],
但是,我有这个(正如@arogachev 推荐的那样):
But, I've got this (as @arogachev recommends):
<script src="/assets/8fd244c6/jquery.js"></script>
<!--[if lt IE 7]>
<script src="/assets/bd48c465/yii.js"></script>
<![endif]-->
<script src="/assets/bd48c465/yii.gridView.js"></script>
<script src="/assets/db9cb9aa/js/bootstrap.js"></script>
UPD2:答案
'yiiwebYiiAsset' => [
'cssOptions' => ['condition' => 'gt IE 7]>'],
'jsOptions' => ['condition' => 'gt IE 7]>'],
],
'yiiootstrapBootstrapAsset' => [
'cssOptions' => ['condition' => 'gt IE 7]>'],
],
'yiiootstrapBootstrapPluginAsset' => [
'jsOptions' => ['condition' => 'gt IE 7]>'],
],
'yiiwebJqueryAsset' => [
'jsOptions' => ['condition' => 'gt IE 7]>'],
'cssOptions' => ['condition' => 'gt IE 7]>'],
],
推荐答案
您可以像这样通过应用程序配置自定义供应商捆绑包:
You can customize vendor bundles through application config like that:
return [
// ...
'components' => [
'assetManager' => [
'bundles' => [
'yiiwebYiiAsset' => [
'jsOptions' => ['condition' => 'lt IE 7'],
],
'yiiootstrapBootstrapAsset' => [
'jsOptions' => ['condition' => 'lt IE 7'],
],
],
],
],
];
或者在运行时通过assetManager:
use Yii;
...
Yii::$app->assetManager->bundles['yiiwebYiiAsset']->jsOptions = ['condition' => 'lt IE 7'];
Yii::$app->assetManager->bundles['yiiootstrapBootstrapAsset']->jsOptions = ['condition' => 'lt IE 7'];
官方文档:
- 自定义资产包
这篇关于如何在 AppAsset 类中向 yii2 依赖项添加条件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 AppAsset 类中向 yii2 依赖项添加条件?
基础教程推荐
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何替换eregi() 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
