thymeleaf 忽略渲染script标签

thymeleaf会渲染页面上的script标签中的内容。
有时候在script标签出现了[[data]]这种双数组的定义,页面渲染就会出错,此时需要忽略这个script标签中的内容.
在script标签中加上th:inline="NONE",就不会渲染这段内容

<script th:inline="NONE">
</script>

本来记得是需要加上th:inline="javascript" script中的内容才会渲染的(可能我记错了?),但现在使用的SpringBoot 2.0.4.RELEASE中只要页面上出现script标签就会被渲染
controller中

@RequestMapping("mini/menu")
public String minimenu(Model model) {
	model.addAttribute("a",1);
	return "minipage/menu";
}

没加inline之前

<script >
    var a = [[${a}]]
</script>

页面输出
在这里插入图片描述
加了inline之后

<script th:inline="NONE">
    var a = [[${a}]]
</script>

在这里插入图片描述

你可能感兴趣的:(Spring,Boot系列)