标签:nbsp 写法 技术 字符 显示 serve height hello http
页面显示:
This application has no explicit mapping for /error, so you are seeing this as a fallback.
<p align="center" th:text="现在de时间是 ${now}">hihihi</p>
正确写法:
<p align="center" th:text="|现在de时间是 ${now}|">hihihi</p>
竖线不能漏掉!指的是文本替换。
另外,用+来连接字符串也是可以的。
另一种正确的写法:
<p align="center" th:text="‘现在de时间是‘ + ${now}">hihihi</p>
标签:nbsp 写法 技术 字符 显示 serve height hello http
原文地址:https://www.cnblogs.com/christy99cc/p/12000196.html