SpringBoot+thymeleaf+layui数据表加载

Posted yandugu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot+thymeleaf+layui数据表加载相关的知识,希望对你有一定的参考价值。

  SpringBoot是前年看过的东西,已经忘完了。今年拿起来再学习学习。由于layui是第一次使用,所以遇到坑比较多。今天试着加载数据表,结果一直报错如下:

技术图片

 

 根据提示是报错的位置在 cols:[[...]],就是[[]]里面的内容不能渲染,这个问题搞得我头大,因为不熟悉Thymeleaf和layui,也不知道什么原因,后来在网上找到了答案

因为“[[]]”[[…]]之间的表达式在Thymeleaf被认为是内联表达式
解决方法:1、或者在script标签里 th:inline="none" 就可以了
2、将[[]]换行成
[

  [

  ]

]

即可

以上是关于SpringBoot+thymeleaf+layui数据表加载的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot——SpringBoot集成Thymeleaf

SpringBoot——SpringBoot集成Thymeleaf

springboot 中使用thymeleaf

SpringBoot系列之集成Thymeleaf用法手册

SpringBoot :thymeleaf 使用详解

springboot-thymeleaf