我的模板是:<input type="text" name="foo" />
百里香正在做什么:<input name="foo" />
这有效:
<input th:type="text" name="foo" />
获取<input type="text" name="foo" />
......以及:<input type="submit" name="foo" />
获取<input type="submit" name="foo" />
我不知道,为什么百万美元会这样做(可能是因为&#34; text&#34;是输入的默认类型)。 由于这种行为,CSS不再适合了。
我的配置:
spring:
thymeleaf:
check-template-location: true
prefix: classpath:/templates/
suffix: .html
mode: HTML5
encoding: UTF-8
content-type: text/html
cache: false
我的代码中没有使用th:remove
。还有其他想法吗?
感谢您的帮助! : - )