我正在尝试使用th:pattern
日期输入表单字段,例如使用spring-mvc的百里香模板,但没有运气。还有其他人经历过类似的事情并有一些见解或替代方案吗?
我试过 1。硬编码模式
<input type="text" th:pattern="MM/dd/yyyy" th:field="*{classDate}"/>
收到错误:
Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "MM/dd/yyyy"
和 2。在 java 代码中设置模式以供模板使用
<input type="date" th:pattern="${classdate_format}" th:field="*{classDate}"/>
收到错误:
Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Error during execution of processor 'org.thymeleaf.spring3.processor.attr.SpringInputGeneralFieldAttrProcessor'