英文:
org.thymeleaf.exceptions.TemplateProcessingException: Concatenation href
问题
我想要拼接 cloudfront.net/css/sample.css
。
我收到了以下错误:
> 请求处理失败;嵌套异常为 org.thymeleaf.exceptions.TemplateProcessingException: 无法解析为表达式:"${cloudfrontBaseURL} + css/sample.css"。
英文:
I want to concat cloudfront.net/css/sample.css
.
I get the following error:
> Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "${cloudfrontBaseURL} + css/sample.css".
答案1
得分: 1
你可以这样拼接:
<div th:text="${cloudfrontBaseURL + 'css/sample.css'}"></div>
或者
<div th:text="|${cloudfrontBaseURL}css/sample.css|"></div>
详细信息请参阅:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#literal-substitutions
英文:
You can concat like this:
<div th:text="${cloudfrontBaseURL} + 'css/sample.css'"></div>
or
<div th:text="|${cloudfrontBaseURL}css/sample.css|"></div>
https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#literal-substitutions
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论