gpt4 book ai didi

java - Thymeleaf,如何用一串文本做一个新段落

转载 作者:行者123 更新时间:2023-12-01 14:20:44 25 4
gpt4 key购买 nike

在我的 Java 程序中,我有一个带有 2 段长字符串的填充器。

String myString = "Paragraph 1 text... \n" +
"\n" +
"Paragraph 2 text...";

当我使用 Thymeleaf 显示它时,它显示为 1 个段落。

"Paragraph 1 text... Paragraph 2 text..."

我如何将它们分成这样的段落:

"Paragraph 1 text...

Paragraph 2 text..."

这是显示文本的 Thymeleaf:

        <section class="post-content" th:text="${post.myString}">
</section>

编辑:我曾尝试使用标签(如 <p><br /> ),但它们显示为文本而不是 html 标签。

最佳答案

使用 <br>标记创建换行符以显示在前端,而不是 "\n" .

String myString = "Paragraph 1 text... <br/>" +
"<br/>" +
"Paragraph 2 text...";

您可以使用 th:utext 在不转义的情况下显示 HTML。

<section class="post-content" th:utext="${post.myString}">
</section>

关于java - Thymeleaf,如何用一串文本做一个新段落,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62600942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com