thymeleaf
小馒头味豆浆
这个作者很懒,什么都没留下…
展开
-
thymeleaf单选回显,多选回显,下拉选回显,默认选中第一个
thymeleaf单选回显,多选回显,默认选中第一个//默认选中第一个input type=radio class=hobby2 name=repaymentType required theach =repaymentType,repaymentState${repaymentTypeList} thvalue=${repaymentType.dictName} thtext =${'...原创 2018-11-09 12:37:33 · 12805 阅读 · 2 评论 -
thymeleaf和freemarker从对象中获取时间并格式化,同时对时间参数做非空判断
thymeleaf,freemarker从对象中获取时间并格式化,同时非空判断freemarker对象非空判断:${(creditInformationDO.delFlag)!}freemarker从对象中获取时间并格式化:${(creditInformationDO.applyEndTime?string('yyyy年MM月dd日'))!}thymeleaf非空判断:th:value="...原创 2018-11-27 19:17:04 · 1551 阅读 · 0 评论 -
thymeleaf点击onclick事件
thymeleaf点击onclick事件add是方法名,param是参数th:onclick="'javascript:add('+${param}+')'"原创 2018-12-17 17:29:55 · 13812 阅读 · 0 评论 -
java.lang.NoSuchMethodError: org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTag
org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.NoSuchMethodError: org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTag...原创 2018-12-25 16:01:05 · 1356 阅读 · 0 评论 -
th:each内部进行条件判断来更改样式
th:each内部进行条件判断来更改样式遍历集合并每隔两个换行<div> <input type="checkbox" th:each ="p,pIndex:${pList}" th:utext ="${pIndex.index%2==0?p.name:'p.name+'&l原创 2019-01-05 07:59:03 · 6811 阅读 · 0 评论 -
thymeleaf中数字类型转化为字符串
thymeleaf中数字类型转化为字符串id为int类型的0<span th:if="${id == 0}">true</span> <span th:if="${id == '0'}">false</span> <span th:if="${id+'' == '0'}">true</sp原创 2019-01-11 17:45:18 · 13612 阅读 · 6 评论 -
js中使用thymeleaf获取对象属性
js中使用thymeleaf获取对象属性 var v = [[${user.id}]]原创 2019-01-25 11:19:32 · 13724 阅读 · 0 评论 -
thymeleaf对于回显数据的处理
thymeleaf语法简单使用字符串拼接<span th:text="|Welcome to home, ${user.name}!|">//这实际上相当于:<span th:text="'Welcome to home, ' + ${user.name} + '!'">//文字替换可以与其他类型的表达相结合:<span th:text="${onevar...原创 2019-03-21 19:03:48 · 3404 阅读 · 0 评论