美文网首页
2018-05-11thymeleaf

2018-05-11thymeleaf

作者: 江江江123 | 来源:发表于2018-05-11 15:57 被阅读0次

springboot 如何在html写jsp

简单整理下遇到的修改

常用实例

//头文件引入
<html lang="en" xmlns:th="http://www.thymeleaf.org">
//href @其实相当于项目路径ctx
th:href="@{/path/css/public.css}"
//src
th:src="@{/path/public/logo.png}"
//if 以多重判断为例 ,true显示,false不显示 ,也可以直接在${}内写 && ||
th:if="${resultInfo.countEvaluate}!=0 and ${resultInfo.isCp}!=0"
//文本
th:text="${resultInfo.questionNum}"
//html
th:utext="${}"
//for
th:each="x,i : ${arrays}"
//click ,class...大部分参数拼接都可以用th
th:click=""       th:class = ""...
//为空校验:为空每次都要验证字符为空''和值为空null,themeleaf提供一个简单的方法
#string.isEmpty()
字符串拼接themeleaf和vue这些新语法都差不多,当标签被特定的字符修饰后引号内的字符都是对象,而拼接的字符需要用单引号或者转意引号来拼接,然而themeleaf可以用|{content}|来强制展示字符串

相关文章

  • 2018-05-11thymeleaf

    springboot 如何在html写jsp 简单整理下遇到的修改 常用实例 字符串拼接themeleaf和vue...

网友评论

      本文标题:2018-05-11thymeleaf

      本文链接:https://www.haomeiwen.com/subject/lqgfdftx.html