java Thymeleaf ${} 实现换行
时间: 2023-11-01 15:56:11 浏览: 131
在 Thymeleaf 中使用 ${} 表达式来实现换行,可以通过使用HTML的 `<br>` 标签或者CSS的 `white-space` 属性来实现。
方法一:使用 `<br>` 标签
```html
<p th:text="${text}">Lorem ipsum dolor sit amet,<br>consectetur adipiscing elit.</p>
```
上述代码中,`${text}` 是一个 Thymeleaf 表达式,用于动态渲染内容。`<br>` 标签用于在文本中添加换行。
方法二:使用CSS的 `white-space` 属性
```html
<p th:text="${text}" style="white-space: pre-line;">Lorem ipsum dolor sit amet,
consectetur adipiscing elit.</p>
```
上述代码中,`${text}` 是一个 Thymeleaf 表达式,用于动态渲染内容。`style="white-space: pre-line;"` 设置了 CSS 的 `white-space` 属性为 `pre-line`,这将对字符串中的换行符进行处理,使其在渲染时显示为换行。
以上两种方法都可以实现在 Thymeleaf 中使用 ${} 表达式来实现换行。你可以根据自己的需求选择其中一种方式来实现换行效果。
阅读全文