我正在尝试发送用户输入的日期,格式为dd/MM/yyyy
。但是,由于后端是Java,因此当我在页面中(通过Thymeleaf)创建日期格式为MM/dd/yyyy
的对象时,会弄乱日期。
<form th:action="@{/addDate}" th:object="${date}" method="POST" class="bd-example">
<input type="text" class="form-control" id="dateInput" placeholder="DD/MM/YYYY" th:field="*{date}" required />
是否可以在不修改后端对象方法的情况下更改页面中的该值?