网上找遍了国内和国外的资料,没有能够为动态增加的文件加上时间戳的,进过分析Yii2源码,发现其实非常简单:
开启assetManager支持自动加上时间戳
修改main.php
'assetManager' => [
'appendTimestamp' => true,
],
视图层按需加载js,css
$bundle=AppAsset::register($this);
$bundle->js[]='js/windowview.js';
$bundle->css[]='css/robot.css';