1、原来的写法
<link href="/static/css/m.min.css" rel="stylesheet">
2、改进后的写法
在配置文件中增加一个配置,如果需要更新就修改版本号
<link href="/static/css/m.min.css?t={{version.app_version}}" rel="stylesheet">例如<link href="/static/css/m.min.css?t=1623291687929" rel="stylesheet">
改进处理可以使用文件的md5值作为版本号,只要发生修改就会更新版本号
关于版本号的处理
1、每次部署的时候自动生成一个版本号文件
echo $(date "+%Y%m%d%H%M%S") > version.txt
2、配置文件中读取版本号
config/version.php
<?php// +----------------------------------------------------------------------// | 应用版本号设置// +----------------------------------------------------------------------// 生成version// echo $(date "+%Y%m%d%H%M%S") > version.txt$version_file = '../version.txt';if(file_exists($version_file)){ $version = trim(file_get_contents($version_file));} else{ $version = time() . '';}return [ // 应用版本号,用于更新静态文件 'app_version' => $version,];
3、每次渲染模板的时候在中间件中读取该配置
<?phpdeclare (strict_types=1);namespace app\index\middleware;use \Think\response\View as ViewResponse;class CommonDataMiddleware{ public function handle($request, \Closure $next) { $response = $next($request); if ($response instanceOf ViewResponse) { if (!$response->getVars('version')) { $response->assign('version', config('version')); } } return $response; }}
4、模板文件中使用
<link href="/static/css/m.min.css?t={{version.app_version}}" rel="stylesheet">
现在就实现了重新部署就更新版本号,稳定运行就不更新