thymeleaf格式化小数的坑 都知道用#numbers.formatDecimal来format,但是formatDecimal里的两个参数却搞不太清楚,最坑的是thymeleaf官网中居然没有详细的说明。。。无语。 没办法,只能... 2018年9月3日 thymeleaf 浏览量:4,231 次 发表评论 阅读全文
thymeleaf中onclick调用js函数时传参 以往都是用+号来拼接,实际上thymeleaf里也支持下面的这种写法。 <button th:onclick="@{javascript:edit('{prodNo}')(prodNo = ${... 2018年8月23日 thymeleaf 浏览量:1,776 次 发表评论 阅读全文
thymeleaf中的字符串和变量拼接 首先看看thymeleaf官方文档里的描述,写得很清楚。 4.8 Literal substitutions Literal substitutions allow for an easy forma... 2018年8月22日 Spring 浏览量:4,445 次 发表评论 阅读全文
thymeleaf button提交时的bug 当一个form中有多个button,比如button1,button2。form里指定了th:action,这时button1和button2默认提交都是到th:action的地址里,但是如果我想bu... 2018年8月14日 Spring 浏览量:1,212 次 发表评论 阅读全文
Caused by: org.springframework.expression.spel.SpelParseException: EL1041E: After parsing a valid expression, there is still more data in the expression: ‘rparen())’ Caused by: org.springframework.expression.spel.SpelParseException: EL1041E: After parsing a valid ex... 2018年8月14日 Spring 浏览量:6,395 次 发表评论 阅读全文
thymeleaf list中的checkbox表单提交 画面上的list中第一列为checkbox,需要传递提交整个list的值给后台。 写法如下: 前台: <tr th:each="item, stat : *{orderInfoList}">... 2018年8月13日 Spring 浏览量:4,239 次 发表评论 阅读全文