server.js
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const express = require('express');
const app = express();
const bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({extended : true}));
app.set('view engine', 'ejs');
var db;
const MongoClient = require('mongodb').MongoClient;
MongoClient.connect('mongodb+srv://admin:qwer1234@cluster0.m2pvs.mongodb.net/myFirstDatabase?retryWrites=true&w=majority', function(에러, clinet){
// 연결되면 할 일
if(에러){
return console.log(에러);
}
db = clinet.db('todoapp');
app.listen(8080, function(){
console.log('listening on 8080')
});
});
app.get('/pet', function(요청, 응답){
응답.send('펫쇼핑할 수 있는 페이지입니다.');
});
app.get('/beauty', function(요청, 응답){
응답.send('뷰티용품 쇼핑할 수 있는 페이지입니다.');
});
app.get('/', function(요청, 응답){
응답.sendFile(__dirname + '/index.html');
});
app.get('/write', function(요청, 응답){
응답.sendFile(__dirname + '/write.html');
});
app.post('/add', function(요청, 응답){
응답.send('전송완료');
db.collection('post').insertOne({제목 : 요청.body.title, 날짜 : 요청.body.date}, function(에러, 결과){
console.log('저장완료')
});
});
app.get('/list',function(요청, 응답){
응답.render('list.ejs');
});