随笔分类 - thymeleaf
摘要:在做权限的时候,有递归数据类型,里面包含list,然而在展示页面的时候,写到第二层list的时候,就开始不提示报错了 错误的写法 正确的写法
阅读全文
摘要:springboot2.x 按照下面那样传值会出现这样的错误 org.thymeleaf.exceptions.TemplateProcessingException: Only variable expressions returning numbers or booleans are allow
阅读全文
摘要:1.第一种方式 {url}进行占位,在后面的()里写入占位的值 ${url}是controller里面传过来的值<img th:src="@{{url}{{d.userImg}}(url=${url})}" alt="加载失败"/>2.第二种方式 {{d.userImg}} 是layui的获取全局变
阅读全文