박민정

[fix] Fix the unknown error. Reset to the previous commit ID 011d944f

...@@ -8,7 +8,7 @@ const cors = require('cors') ...@@ -8,7 +8,7 @@ const cors = require('cors')
8 // body-parser 가져옴 8 // body-parser 가져옴
9 const bodyParser = require('body-parser') 9 const bodyParser = require('body-parser')
10 // bodyParser option 10 // bodyParser option
11 -app.use(bodyParser.urlencoded({extended: true})) //application/x-www-form-urlencoded로 된 데이터를 분석해서 가져옴 11 +app.use(bodyParser.urlencoded({ extended: true })) //application/x-www-form-urlencoded로 된 데이터를 분석해서 가져옴
12 app.use(bodyParser.json()) // application/json 타입으로 된 데이터를 분석해서 가져옴 12 app.use(bodyParser.json()) // application/json 타입으로 된 데이터를 분석해서 가져옴
13 const cookieParser = require("cookie-parser"); 13 const cookieParser = require("cookie-parser");
14 app.use(cookieParser()); 14 app.use(cookieParser());
......