#checkboxをより配列の情報を受け取りたい
以下のようにcheckboxを設定して配列でsubjectの情報を送ろうとしています。
subListにはDBから取り出したSubject型のインスタンスが入っています。
どなたかアドバイスといただけると幸いです。
よろしくお願いいたします。
##フォーム
html
1<!DOCTYPE html> 2<html xmlns:th="http://www.thymeleaf.org" 3 xmlns:sec="http://www.thymeleaf.org/extras/spring-security"> 4<head> 5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6<title>Insert title here</title> 7</head> 8<body th:with="user=${#authentication.principal.user}"> 9<form th:action="@{'/profile/teacherEdit/'+${user.userId}}" 10 th:object="${teacherEditForm}" method="post"> 11 <div> 12 <label for="subject">指導可能な教科</label> 13 </div> 14 <div th:each="subject : *{subList}"> 15 <input type="checkbox" th:value="${subject}" 16 name="selectedSubjects" th:text="${subject.subjectName}" /> 17 </div> 18 <div> 19 <input type="submit" value="プロフィールを変更" /> 20 </div> 21 <div> 22 <a th:href="@{'/profile/'+${user.userId}}">プロフィール画面に戻る</a> 23 </div> 24</form> 25</body> 26</html>
##controller
java
1//controller送信された情報を受け取る 2Subject[] selectedSubjects = teacherEditForm.getSelectedSubjects(); 3 for(Subject value:selectedSubjects) { 4 user.addSubject(value); 5 } 6 userRepository.save(user);
##FormClass
java
1public class TeacherEditForm { 2 //教科の出力 3 private List<Subject> subList = new ArrayList<>(); 4 //教科の入力値を受け取る 5 @Size(max=5,message="教科数の選択は5つまでです。") 6 private Subject[] selectedSubjects; 7 //getter,setter 8 9} 10
##画面に表示されるエラー
Subject型の配列として情報を送りたいのですが
StringからIntegerへの変換はできないと怒られてしまします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。