[Nodejs-mysql] 데이터 넣고 출력하기
[생활코딩] MySQL로 글생성 기능 구현 else if(pathname === '/create_process'){ var body = ''; request.on('data', function(data){ body = body + data; }); request.on('end', function(){ var post = qs.parse(body); var title = post.title; var description = post.description; db.query(`INSERT INTO topic (title, description, created, author_id) VALUES (?, ?, NOW(), ?)`, [title, description, 1], function(err, result){..
2020. 8. 5.