일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드2.0개발
- 영어
- 안드로이드 개발 2.0 강좌
- MapView
- 안드로이드폰
- 스카이 안드로이드폰 시리우스
- 안드로이드 배경화면
- sky 시리우스폰
- 안드로이드 바탕화면
- 하루한마디영어
- objective-c
- Form Stuff
- 안드로이드 2.0 개발
- 안드로이드2.0
- 인기있는 블로그 만들기
- 하루 한마디 영어
- SKY 시리우스
- 구글 안드로이드
- 안드로이드 개발 강좌
- 구글 안드로이드 개발
- 아이폰 바탕화면
- 구글안드로이드
- 아이폰 배경화면
- 안드로이드 개발 2.0
- 안드로이드개발
- 스카이 안드로이드폰 시리우스 K양 동영상
- android
- 스마트폰 배경화면
- 안드로이드
- 안드로이드 개발
- Today
- Total
moozi
node.js board.js express 4.x 본문
// 모듈을 추출합니다.
var fs = require('fs');
var ejs = require('ejs');
var mysql = require('mysql');
var express = require('express');
var bodyParser=require('body-parser');
// 데이터베이스와 연결합니다.
var client = mysql.createConnection({
user: 'root',
password: '1234',
database: 'Company'
});
// 서버를 생성합니다.
var app = express();
app.use(bodyParser.urlencoded({extended:false}));
// 서버를 실행합니다.
app.listen(52273, function () {
console.log('server running at http://127.0.0.1:52273');
});
// 라우트(url이동)를 수행합니다.
app.get('/', function (request, response) {
// 파일을 읽습니다.
fs.readFile('board_list.html', 'utf8', function (error, data) {
// 데이터베이스 쿼리를 실행합니다.
client.query('SELECT * FROM board', function (error, results) {
// 응답합니다.
response.send(ejs.render(data, {
data: results
}));
});
});
});
app.get('/delete/:id', function (request, response) {
// 데이터베이스 쿼리를 실행합니다.
client.query('DELETE FROM board WHERE id=?', [request.param('id')], function () {
// 응답합니다.
response.redirect('/');
});
});
// 등록 링크를 눌렀을 때
app.get('/insert', function (request, response) {
// 파일을 읽습니다.
fs.readFile('board_insert.html', 'utf8', function (error, data) {
// 응답합니다.
response.send(data);
});
});
//form에 데이터입력후 submit버튼을 눌렀을 때
app.post('/insert', function (request, response) {
// 변수를 선언합니다.
var body = request.body;
var d=new Date();
var year=d.getFullYear(); //년도
var month=d.getMonth()+1; //월. 1을 더해줘야 함.
var date=d.getDate(); //일
if(month<10){
month="0"+month;
}
if(date<10){
date="0"+date;
}
var ymd = year+"-"+month+"-"+date;
// 데이터베이스 쿼리를 실행합니다.
client.query('INSERT INTO board (title, content, wdate) VALUES (?, ?, ?)', [
body.title, body.content, ymd
], function () {
// 응답합니다.
response.redirect('/');//목록으로 이동.
});
});
// edit링크를 클릭했을 때
app.get('/edit/:id', function (request, response) {
// 파일을 읽습니다.
fs.readFile('board_edit.html', 'utf8', function (error, data) {
// 데이터베이스 쿼리를 실행합니다.
client.query('SELECT * FROM board WHERE id = ?', [
request.param('id')
], function (error, result) {
// 응답합니다.
response.send(ejs.render(data, {
data: result[0]
}));
});
});
});
//edit form에 데이터입력후 submit을 클릭했을 때
app.post('/edit/:id', function (request, response) {
// 변수를 선언합니다.
var body = request.body
// 데이터베이스 쿼리를 실행합니다.
client.query('UPDATE board SET title=?, content=?, wdate=? WHERE id=?', [
body.title, body.content, body.wdate, request.param('id')
], function () {
// 응답합니다.
response.redirect('/');//목록으로 이동
});
});
// title링크를 클릭했을 때
app.get('/content/:id', function (request, response) {
// 파일을 읽습니다.
fs.readFile('board_content.html', 'utf8', function (error, data) {
// 데이터베이스 쿼리를 실행합니다.
client.query('SELECT * FROM board WHERE id = ?', [
request.param('id')
], function (error, result) {
// 응답합니다.
response.send(ejs.render(data, {
data: result[0]
}));
});
});
});
'TIS_2017 > 응용sw_2기' 카테고리의 다른 글
안드로이드연습문제01 (0) | 2017.09.11 |
---|---|
node.js 미니프로젝트 참고 (0) | 2017.09.08 |
node.js chating client sample (0) | 2017.09.07 |
node.js socket개념 정리 (0) | 2017.09.07 |
9/7 product.html (0) | 2017.09.07 |