回答編集履歴
2
改善修正
test
CHANGED
@@ -1,11 +1,13 @@
|
|
1
|
+
```
|
2
|
+
|
1
3
|
<form th:action="@{/delete}" method="post">
|
2
4
|
|
3
5
|
<input type="submit" value="削除" >
|
4
6
|
|
5
7
|
<input type="hidden" id="question" name="question" th:value="${question.id}" readonly>
|
6
8
|
|
7
|
-
|
9
|
+
</form>
|
8
10
|
|
9
|
-
|
11
|
+
```
|
10
12
|
|
11
13
|
に変更することで動きました
|
1
修正
test
CHANGED
@@ -1 +1,11 @@
|
|
1
|
+
<form th:action="@{/delete}" method="post">
|
2
|
+
|
3
|
+
<input type="submit" value="削除" >
|
4
|
+
|
5
|
+
<input type="hidden" id="question" name="question" th:value="${question.id}" readonly>
|
6
|
+
|
7
|
+
</form>
|
8
|
+
|
9
|
+
|
10
|
+
|
1
|
-
|
11
|
+
に変更することで動きました
|