Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Cisco
- sql
- ospf
- 네트워크
- 버추얼머신
- VLAN
- 데이터베이스
- 이것이 자바다
- 참조타입
- rinux
- Java
- cisco packet
- jsp
- 오라클
- 원형그래프
- jsp연결
- javaee
- 라우터
- 네트워크관리사
- autoset
- php
- NCS
- 리눅스
- w3school
- 정처기필기
- ciscopacket
- html
- 자바
- 정보처리기사
- Oracle
Archives
- Today
- Total
기록해! 정리해!
응답과 응답형식 (html, json, xml ) 본문
const http = require('http');
const express = require('express');
var items=[{name:'우유', price:'2000' },
{name:'홍차', price:'3000'}];
const app = express();
app.use(express.logger());
app.use(express.bodyParser());
app.use(express.static('public'));
app.use(app.router);
// get, post, put, del
app.all('/a', function(request, response){
response.send('<h1> Page A </h1>')
});
app.all('/data.html', (request, response) => {
var output="";
items.forEach( (item)=>{
output += item.name + ":" + item.price +"<br>" ;
});
response.send(output);
});
app.all('/data.json', (request, response) =>{
response.send(items);
});
app.all('/data.xml', (request, response) => {
var output="";
output += '<?xml version="1.0" encoding="UTF-8" ?>';
output += '<products>' ;
items.forEach( (item) =>{
output += '<product>' ;
output += '<name>' + item.name + '</name>' ;
output += '<price>' + item.price + '</price>' ;
output += '</product>' ;
});
output += '</products>' ;
response.type('text/xml');
response.send(output);
});
app.use( ( request, response ) => {
response.writeHead(200, {'Content-Type':'text/html; charset=utf-8'});
response.end('<div align=center><h1> 서버 접근을 환영합니다.!!! </h1></div');
});
http.createServer(app).listen(52273, () => {
console.log ('Server Running at http://127.0.0.1:52273');
})
'자바스크립트' 카테고리의 다른 글
Postman 사용하기 (0) | 2022.09.29 |
---|---|
Node.js -ppt 실습 (1) (0) | 2022.09.28 |
Node.js 다운로드 + 테스트하기 (0) | 2022.09.28 |
Comments