参考文献:[1][EN]Georgo Ornbo.傅强.陈宗斌. Node.js入门经典[M]. 北京:人民邮电出版社.2013.4-1
一、给服务器增加Header
res.writeHead(200,{ 'Content=Type':'text/plain' });
二、Node.js 重定向
例如发送301相应代码
res.writeHead(301,{ 'Location':'http://www.baidu.com/' });
三、分析URL成分
分析URL成分需使用URL模块
var url = require('url');//请求URL模块 var requesturl = 'http://www.baidu.com:789/pathname?query=string#hash'; console.log(url.parse(requesturl).hostname); console.log(url.parse(requesturl).port); console.log(url.parse(requesturl).pathname);
程序返回:
www.baidu.com
789
/pathname
四、给服务器添加路由
说白了就是,同时使用HTTP、URL模块,判断URL中的Pathname,来选择不同的服务器。
比如www.baidu.com/index.php 、www.baidu.com/tieba.php等等
PS: 这也说明,如果不使用框架来开发Node.js世界将会很痛苦
五、Node.js 的HTTP客户端
说白了就是fetch 其它url页面内容。