我在数据库中有段落的文字,我可以在java中看到System.out.println();
的这个文字,但是当我在UI上显示这个文字时,我看到一行中的所有文字。
弹簧:
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("allText",dtos);
modelAndView.setViewName("test");
return modelAndView;
所以我尝试在UI上显示:
<div th:each="text: ${allText}">
<div align="center" >
<b><span th:text="${text.description}">description</span></b>
</div>
</div>
我的错误在哪里?
答案 0 :(得分:0)
th:utext="${#strings.unescapeJava(#strings.replace(#strings.escapeJava(text.description),'\n','<br />'))}"