본문 바로가기
Programming/Javascript

[node.js] Split the Query String

by Berasix 2022. 10. 21.
반응형

node.js 에서 쿼리 스트링 자르기

var http = require('http');
var url = require('url');

http.createServer(function (req, res) {
	res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'});
	var q = url.parse(req.url, true).query;
	var txt = q.year + "년 " + q.month + "일 ";
	res.end(txt);
}).listen(8080);

 

728x90

댓글