我在我的应用程序中尝试了Thymeleaf(Spring Boot 4和Thymeleaf 2.x)但是出现了解析错误:
th:style="'background-image: url('+@̣{css/nema/neder-e.png}+');'"
我想念哪一点?
答案 0 :(得分:0)
你的表达式中@和{之间有一些奇怪的字符。我不知道它们是什么(十六进制中的CCA3?),但表达式本身一旦删除就有效。
答案 1 :(得分:0)
试试这个
th:style="'background-image:url(' + @{'/css/nema/neder-e.png' + ');'"
答案 2 :(得分:0)
已经很长时间了,但是对于那些将来有这个问题的人来说,这是解决方案:
th:style="'background-image: url(your-image-path);'"
您无需添加任何东西,只需替换 your-image-path 。
示例:
th:style="'background-image: url(/images/image.jpg);'"
图像位于Spring boot的 resoureces / static 目录中