Thymeleafのセレクトボックスで生年月日を作る
4884 ワード
セレクトボックスで生年月日を作る
ちょっと時間かかったので備忘録として残しておきます。
#numbers.sequenceで選択できる範囲を指定するのがポイント。
index.html
<div>
<select id="birtyday" name="birthday">
<option th:each="i : ${#numbers.sequence(2020, 1920)}"
th:value="${i}" th:text="${i}" th:selected="${i == birthYear}">
</option>
</select>
<select id="birthMonth" name="birthMonth">
<option th:each="i : ${#numbers.sequence(1, 12)}" th:value="${i}"
th:text="${i}" th:selected="${i == birthMonth}"></option>
</select>
<select id="birthDay" name="birthDay">
<option th:each="i : ${#numbers.sequence(1, 31)}" th:value="${i}"
th:text="${i}" th:selected="${i == birthDay}"></option>
</select>
</div>
Birth.java
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class Birth {
@GetMapping("/index")
public String getIndex(Model model) {
int birthYear = 2002;
int birthMonth = 8;
int birthDay = 3;
model.addAttribute("birthYear", birthYear);
model.addAttribute("birthMonth", birthMonth);
model.addAttribute("birthDay", birthDay);
return "index";
}
}
Author And Source
この問題について(Thymeleafのセレクトボックスで生年月日を作る), 我々は、より多くの情報をここで見つけました https://qiita.com/parapore/items/22ca680ed8b487b4bea1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .