时间:2021-05-19
在spring boot 项目中使用thymeleaf模板,将后台数据传递给前台界面。
1、将后台数据传递给前台有很多种方式,可以将后台要传递的数据转换成json格式,去传递给前台,也可以通过model形式去传递出去,这篇博客主要是使用thymeleaf模板,将后台数据传递给前台。
2、首先要在spring boot 项目中添加如下依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
3、这里后台有关如何查询数据,得到数据的具体过程就不在多说了,只是写将数据库中查询到的数据取出来,放到model里面。这里就一个例子吧。
@RequestMapping("/")public String index(Model model){Person single=new Person("aa",11);List<Person> people =new ArrayList<Person>();Person p1=new Person("xx",22);Person p2=new Person("dd",33);Person p3=new Person("zz",44);people.add(p1);people.add(p2);people.add(p3);model.addAttribute("singlePerson",single);model.addAttribute("people",people);return "index";}4.前台界面的写法,
<span th:text="${person.name}"></span> <span th:text="${person.age}"></span>
通过这样的方法就可以取到放入model中的person的name和age了。
(注:前台界面要添加上这个代码:<html xmlns:th="http://www.thymeleleaf.org">)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.pom.xml添加相应依赖 org.springframework.boot spring-boot-starter-thymeleaf2.applic
1.在SpringBoot开发环境下禁用模板缓存#开发环境下关闭thymeleaf模板缓存,thymeleaf默认是开启状态spring.thymeleaf.c
这篇文章将更加全面详细的介绍thymeleaf的使用。thymeleaf是新一代的模板引擎,在spring4.0中推荐使用thymeleaf来做前端模版引擎。t
1.什么是spring-boot-devtoolsspring-boot-devtools是spring-boot项目开发时的一个热部署工具,安装了spring
女朋友他们项目用了spring-boot,以spring-boot-parent作为parent:org.springframework.bootspring-