本文介绍了Yii2 资产清除缓存的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每次更新 infowebmenumoduleassets 中的 css 或 js 文件时,都必须清空 backendwebassets 文件夹
有没有办法自动清除资产缓存?

Everytime I update my css or js files in infowebmenumoduleassets, I have to empty the backendwebassets folder
is there a way to automatically clear the assets cache?

推荐答案

在您的视图中添加:

use vendormyVendorNamemyPackageNameassetsAppAsset;
AppAsset::register($this);

在您的配置中添加:

'components' => [
    'assetManager' => [
        'linkAssets' => true,
    ],
]

清空assets文件夹,刷新,完成

Empty assets folder, and refresh, done

这篇关于Yii2 资产清除缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 14:47