Node.js小Http服務器

需要說明兩點:

1 程序文件hello.js需用記事本另存爲utf-8格式的hello.js


2 輸出網頁裏也要支持中文編碼

res.write('<head><meta content="text/html; charset=utf-8"/><title>智普教育</title></head>');

現在用node.js創建一個小型的www服務器。

console.log('hello')
console.log('hello %s->%d','jeapedu', 1941847311)
var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write('<head><meta content="text/html; charset=utf-8"/><title>智普教育</title></head>');
res.write('<!doctype html><html>')
res.write('<body><a href="http://www.jeapedu.com">智普教育</a></body></html>'); 
res.end();
}).listen(3128);
console.log("http://127.0.0.1:3128");

測試:在瀏覽器裏鍵入 http://127.0.0.1:3128 , 可以看到瀏覽器裏有內容了。




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章