이 thymeleaf 코드가 있습니다.
<form th:method="POST" th:action="@{/order/savedaddress}" th:object="${orderForm}">
<label>
Choose saved address:
<select th:field="*{address_id}">
<option value="">Choose address</option>
<option th:each="address : ${savedAddress}"
th:value="${address.id}"
th:text="${address.id}"></option>
</select>
</label>
orderForm에는 내가 채우고 싶은 address_id 필드
가 있습니다. savedAddress는 선택 항목이있는 모든 주소의 List입니다
. 결과적으로이 html 테이블을 얻습니다. 이 HTML 형식의 모든 데이터는 올바르게 전송되지만 문제가 있습니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Add new order</title>
</head>
<body>
<form method="POST" action="/order/savedaddress">
<label>
Choose saved address:
<select id="address_id" name="address_id">