回答編集履歴
2
文法の修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
コメント欄のjimbeさんのアドバイス通りでした、ありがとうございます。<form:form>タグ
|
1
|
+
コメント欄のjimbeさんのアドバイス通りでした、ありがとうございます。<form:form>タグをループ内に新たに追加しただけです。
|
2
2
|
|
3
3
|
```JSP
|
4
4
|
<form:form action="/sales/system" modelAttribute="salesForm">
|
1
プログラムの改善
test
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
コメント欄のjimbeさんのアドバイス通りでした、ありがとうございます。<form:form>タグの場所を移しただけです。
|
2
2
|
|
3
3
|
```JSP
|
4
|
+
<form:form action="/sales/system" modelAttribute="salesForm">
|
4
|
-
<table>
|
5
|
+
<table>
|
5
6
|
<thead>
|
6
7
|
<tr>
|
7
8
|
<th>削除</th>
|
@@ -42,4 +43,5 @@
|
|
42
43
|
<input type="submit" name="removeProduct" value="削除" />
|
43
44
|
<input type="submit" name="fix" value="確定" />
|
44
45
|
</div>
|
46
|
+
</form:form>
|
45
47
|
```
|