Showing
1 changed file
with
14 additions
and
1 deletions
... | @@ -106,7 +106,20 @@ contact_delete : 연락처 삭제 모듈 | ... | @@ -106,7 +106,20 @@ contact_delete : 연락처 삭제 모듈 |
106 | input : 사용자의 연락처 삭제 요청 | 106 | input : 사용자의 연락처 삭제 요청 |
107 | output : 연락처 삭제 성공 여부 | 107 | output : 연락처 삭제 성공 여부 |
108 | */ | 108 | */ |
109 | -router.get('/contact_delete', function(req, res, next) { | 109 | +router.post('/contact_delete', function(req, res, next) { |
110 | + // console.log("req.query",req.query); | ||
111 | + var user_id = req.query.id; | ||
112 | + var sqlquery = "DELETE FROM contact WHERE user_id = ?"; | ||
113 | + connection.query(sqlquery, [user_id], function (err, rows) { | ||
114 | + if (err) { | ||
115 | + console.log("delete contact failed"); | ||
116 | + throw err; | ||
117 | + } else { | ||
118 | + // console.log(rows);s | ||
119 | + res.status(200).send("delete"); | ||
120 | + } | ||
121 | + | ||
122 | + }); | ||
110 | }); | 123 | }); |
111 | 124 | ||
112 | /* | 125 | /* | ... | ... |
-
Please register or login to post a comment