https://blog.csdn.net/qq_36308324/article/details/61922373
我自己犯了个错误,tp5的index.php入口文件在public文件夹下。静态文件的引用就不能加上public,
错误: /public/static/index/js
正确 : /static/index/js
静态文件引用配置
模块下的配置文件夹的template.php文件中
例: index/config/template.php
return[ 'tpl_replace_string' => [ '__JS__' => '/static/'.Request::module().'/js', ], ];
Request::module() 获得当前模块名