Spring Boot 如何显示Thymeleaf上的数据

7uzetpgm  于 2023-02-08  发布在  Spring
关注(0)|答案(1)|浏览(134)

大家好兄弟这是我的控制器

model.addAttribute("getDataHead",cartHeadStockinService.getDatahead());
System.out.println(model);

在那之后,我syso回顾我得到了这样的

getDataHead=[Cart_HeadStockin [id=101, invoice=fsdfsdf, po=, remark=, supplyId=1, date=null]]

我想把这个展示在我的Thymeleaf上

th:object="${getDataHead}" 

th:text="${invoice}"
66bbxpm5

66bbxpm51#

你好,朋友,这很好,你可以把上下文变量在你的模型
在你的Thymeleaf中打印你的文本的方法是这样的

<span th:text="${getDataHead.invoice}"></span>

以下是Thymeleaf文档的参考link

相关问题