質問編集履歴
1
FormEntityの内容(一部)を記載しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
<td>
|
38
38
|
|
39
|
-
<input type="checkbox" name="checkbox" th:id="${item.Id}" th:value="${item.Id}" th:field="*{
|
39
|
+
<input type="checkbox" name="checkbox" th:id="${item.Id}" th:value="${item.Id}" th:field="*{checks}" th:checked="${FormEntity.checks=='1'}" />
|
40
40
|
|
41
41
|
<label th:for="${item.Id}" class="checkbox"></label>
|
42
42
|
|
@@ -72,7 +72,7 @@
|
|
72
72
|
|
73
73
|
```controller
|
74
74
|
|
75
|
-
@RequestMapping(value="/
|
75
|
+
@RequestMapping(value="/Test",params = "submit",method = RequestMethod.POST)
|
76
76
|
|
77
77
|
public ModelAndView Submit_Class(FormEntity FormEntity, Model model) throws ParseException {
|
78
78
|
|
@@ -90,25 +90,25 @@
|
|
90
90
|
|
91
91
|
```HTML
|
92
92
|
|
93
|
-
<input type="checkbox" name="
|
93
|
+
<input type="checkbox" name="checks" id="1" value="1">
|
94
94
|
|
95
|
-
<input type="hidden" name="_
|
95
|
+
<input type="hidden" name="_checks" value="on">
|
96
96
|
|
97
97
|
<label for="1" class="checkbox"></label>
|
98
98
|
|
99
99
|
|
100
100
|
|
101
|
-
<input type="checkbox" name="
|
101
|
+
<input type="checkbox" name="checks" id="2" value="2">
|
102
102
|
|
103
|
-
<input type="hidden" name="_
|
103
|
+
<input type="hidden" name="_checks" value="on">
|
104
104
|
|
105
105
|
<label for="2" class="checkbox"></label>
|
106
106
|
|
107
107
|
|
108
108
|
|
109
|
-
<input type="checkbox" name="
|
109
|
+
<input type="checkbox" name="checks" id="3" value="3">
|
110
110
|
|
111
|
-
<input type="hidden" name="_
|
111
|
+
<input type="hidden" name="_checks" value="on">
|
112
112
|
|
113
113
|
<label for="3" class="checkbox"></label>
|
114
114
|
|
@@ -121,3 +121,57 @@
|
|
121
121
|
|
122
122
|
|
123
123
|
よろしくお願いいたします。
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
追記:
|
134
|
+
|
135
|
+
FormEntityの値を追加しました。
|
136
|
+
|
137
|
+
checkboxの配列を入れる予定のFormはこちらになります。
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
```FormEntity
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
@Getter
|
148
|
+
|
149
|
+
@Setter
|
150
|
+
|
151
|
+
public class FormEntity {
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
private String[] checks;
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
public void setChecks(String[] checks) {
|
160
|
+
|
161
|
+
this.checks = Checks;
|
162
|
+
|
163
|
+
}
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
public String[] getChecks() {
|
168
|
+
|
169
|
+
return checks;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
}
|
174
|
+
|
175
|
+
```
|
176
|
+
|
177
|
+
よろしくお願いします。
|