springBoot整合thymeleaf时th:onclick事件

Posted treesir

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot整合thymeleaf时th:onclick事件相关的知识,希望对你有一定的参考价值。

今天按照

《JavaEE开发的颠覆者: Spring Boot实战》

学习spring boot的时候在编写7_2时thymeleaf传参的时候发生500错误,通过查找各方面资料,发现书上的springboot版本(1.3.0)和我用的版本(2.1.7)不一样引起的

以下处理方法:

1.   将springboot版本改成2.0.5

2.   3.x版本的thymeleaf为了防止注入攻击,升级了安全机制

解决

修改前

<button th:onclick="‘javascript:getName(this,\‘‘+$person.name+‘\‘);‘" type="button">获得名字</button>

修改后

<button th:data-name="$person.name" onclick="getName(this,this.getAttribute(‘data-name‘))" type="button">获得名字</button>

以上是关于springBoot整合thymeleaf时th:onclick事件的主要内容,如果未能解决你的问题,请参考以下文章

03-03:springBoot 整合thymeleaf

springboot整合thymeleaf——引用静态资源

SpringBoot整合Thymeleaf

springboot thymeleaf引入css和js必须添加th吗

springboot整合freemark,thymeleaf

SpringBoot教程:整合Thymeleaf(中)