신동해

Update server.js : add delete process

Showing 1 changed file with 24 additions and 4 deletions
......@@ -37,11 +37,31 @@ app.get('/write', function(요청, 응답){
app.post('/add', function(요청, 응답){
응답.send('전송완료');
db.collection('post').insertOne({제목 : 요청.body.title, 날짜 : 요청.body.date}, function(에러, 결과){
console.log('저장완료')
db.collection('counter').findOne({name : '게시물갯수'}, function(에러, 결과){
console.log(결과.totalPost)
var 총게시물갯수 = 결과.totalPost
db.collection('post').insertOne({ _id : 총게시물갯수 + 1, 제목 : 요청.body.title, 날짜 : 요청.body.date}, function(에러, 결과){
console.log('저장완료')
// counter라는 콜렉션에 있는 totalPost라는 항목도 1 증가시켜야함
db.collection('counter').updateOne({name:'게시물갯수'},{ $inc : {totalPost:1} },function(){
if(에러){
return console.log(에러)
}
})
});
});
});
app.get('/list',function(요청, 응답){
응답.render('list.ejs');
});
\ No newline at end of file
// DB에 저장된 post라는 collectino안의 ~~인 데이터를 꺼내주세요
db.collection('post').find().toArray(function(에러, 결과){
console.log(결과);
응답.render('list.ejs', {posts : 결과});
})
});
app.delete('/delete',function(요청,응답){
console.log(요청.body)
})
\ No newline at end of file
......