質問編集履歴
2
node.jsのdeleteポストを追記いたしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,6 +84,28 @@
|
|
84
84
|
|
85
85
|
});
|
86
86
|
|
87
|
+
|
88
|
+
|
89
|
+
app.post('/delete/:id', (req, res) => {
|
90
|
+
|
91
|
+
connection.query(
|
92
|
+
|
93
|
+
'delete from items where id = ?',
|
94
|
+
|
95
|
+
[req.params.id],
|
96
|
+
|
97
|
+
(error, results) => {
|
98
|
+
|
99
|
+
res.redirect('/index');
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
);
|
104
|
+
|
105
|
+
});
|
106
|
+
|
107
|
+
|
108
|
+
|
87
109
|
```
|
88
110
|
|
89
111
|
モーダルの設定です。
|
1
初心者マークをつけました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -98,7 +98,7 @@
|
|
98
98
|
|
99
99
|
```
|
100
100
|
|
101
|
-
### 試したこと
|
101
|
+
### 試したこと
|
102
102
|
|
103
103
|
|
104
104
|
|