我可以从数据库中的多个表中检索值,但在百里香叶html标签中,我不知道如何将检索到的值放在视图页面中。任何人都可以使用html与百里香叶标签给我一个示例代码,以显示2个表值?
(spring mvc,hibernate,MySQL,thyme-leaf)
答案 0 :(得分:1)
这是一个将值从控制器传递到模板的示例方法:
public String index(Model model, HttpSession session, HttpServletResponse response, HttpServletRequest req) {
model.addAttribute("cars", this.cars);
return "index";
}
这是一个可以访问的可能代码段,例如汽车列表:
<th:block th:each="car: ${cars}">
<span th:text="${car.name}"/>
</th:block>