Yii可以让你缩小和压缩JS。我想压缩所有应用的JS并使用Google托管的jQuery。我该怎么做?
Yii允许您指定jQuery的源代码http://www.yiiframework.com/doc-2.0/guide-structure-assets.html#customizing-asset-bundles
但是我已经在使用bundles
键来压缩资产了:
'bundles' => require(__DIR__ . '/' . (YII_ENV_PROD ? 'assets-prod.php' : 'assets-dev.php')),
assets-prod.php
是自动生成的。我尝试在压缩过程中使用此assets.php
// Asset manager configuration:
'assetManager' => [
'basePath' => '@webroot/assets',
'baseUrl' => '@web/assets',
'bundles' => [
'yii\web\JqueryAsset' => [
'sourcePath' => null, // do not publish the bundle
'js' => [
'//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js',
],
],
],
],
个月
但是当我运行yii asset assets.php config/assets-prod.php
时,它根本没有生成任何jQuery文件。这几乎是我想要的,但是当我加载页面时,jQuery完全不见了。没有对jQuery的引用。它在assets-prod.php
中创建了这个,这似乎是错误的
'yii\\web\\JqueryAsset' => [
'sourcePath' => null,
'js' => [],
'css' => [],
'depends' => [],
],
然后我尝试了资产Maphttp://www.yiiframework.com/doc-2.0/guide-structure-assets.html#asset-mapping。我将其放入web.php
中
'assetMap' => [
'jquery.js' => '//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js',
],
我恢复了assets.php
并再次运行yii asset assets.php config/assets-prod.php
,但随后它又将jQuery放到了一个大型的小型JS文件中。
3条答案
按热度按时间sxpgvts31#
您必须使用“baseUrl”属性,如下所示:
bfhwhh0e2#
您可以使用此配置
8mmmxcuj3#
您不需要basURL