我有一个基本的spring boot项目结构,在资源中这是我的文件夹结构:
resources
-> templates
--> static
---> post.js
-> recover.html
在我的恢复html中:
<script type="text/javascript" th:src="@{static/post.js}" ></script>
,但内容仍未加载,原因是这不是正确的路径。我读过其他类似的问题,但是我仍然不明白如何为post.js选择正确的路径
答案 0 :(得分:0)
您应该遵循以下构造方法:
-resources
--static
---post.js
--templates
和脚本 src :
<script th:src="@{/post.js}" type="text/javascript"></script>