8.1.1 创建HTTP服务器
var http = require('http')
var server = http.createServer(function(req, res){
console.log('客户端与服务器连接已经建立')
})
server.listen(8431, 'localhost',function() {
console.log('服务器开始监听')
})
var http = require('http')
var server = http.createServer(function(req, res){
console.log('客户端与服务器连接已经建立')
})
server.listen(8431, 'localhost',function() {
console.log('服务器开始监听1')
})
// 当http服务器指定了需要监听的地址及端口后,会触发listening事件
server.on('listening', function() {
console.log('服务器开始监听2')
// 关闭服务器
server.close()
})
// 当服务器被关闭时,触发close事件
server.on('close', function(){
console.log('服务器被关闭')
})
server.on('error', function(e) {
if(e.code == 'EADDRINUSE') { // 当地址及端口被占用时错误代码为'EADDRINUSE'
}
})
- 默认情况下,客户端与服务端每进行一次HTTP操作,都将建立一次连接,通信完成后该连接就中断。在HTTP1.1中,添加了长连接支持
var http = require('http')
var server = http.createServer(function(req, res){
console.log('客户端与服务器连接已经建立')
})
server.listen(8431, 'localhost',function() {
console.log('服务器开始监听1')
})
server.on('connection', function(socket) {
console.log('客户端连接已建立')
})
server.on('error', function(e) {
if(e.code == 'EADDRINUSE') { // 当地址及端口被占用时错误代码为'EADDRINUSE'
console.log('地址及端口被占用')
}
})
在浏览器中输入: http://localhost:8431/
浏览器会发出两次客户端请求,一次是用户发出的请求,另一次是浏览器图标 favicon.ico自动发出的请求
- 超时
/** 设置服务器超时时间,默认是2分钟;
* 当超时后,客户端不可继续利用本次建立的连接,下次发出请求时必须重新连接
**/
server.setTimeout(mesecs, callback)
// 若setTimeout方法中不使用callback参数,可如下
server.on('timeout', function(socket) {
// ...
})
// 查询或修改服务器的超时时间
server.timeout = 1000
var http = require('http')
var server = http.createServer(function(req, res){
res.end()
})
server.listen(8431, 'localhost',function() {
console.log('服务器开始监听1')
})
server.setTimeout(30*1000, function(socket) {
console.log('服务器超时')
console.log(socket)
})
浏览器中输入:http://localhost:8431/,然后不执行任何操作
8.1.2 获取客户端请求信息
- http.IncomingMessage(req) 的一些属性
var http = require('http')
var fs = require('fs')
var server = http.createServer(function(req, res){
if(req.url !== 'favicon.ico') {
var out = fs.createWriteStream('chapter-7/request.log')
out.write('客户端请求--method:' + req.method + '\r\n')
out.write('客户端请求--url:' + req.url + '\r\n')
out.write('客户端请求--headers:' + JSON.stringify(req.headers) + '\r\n')
out.write('客户端请求--httpVersion:' + req.httpVersion + '\r\n')
}
})
server.listen(8431, 'localhost',function() {
console.log('服务器开始监听')
})
- 当从客户端请求流中读取到新的数据时,触发data事件,读取完时触发end事件
var http = require('http')
var fs = require('fs')
var server = http.createServer(function(req, res){
if(req.url !== 'favicon.ico') {
req.on('data', function(data) {
console.log('服务端接收到的数据:' + decodeURIComponent(data))
})
req.on('end', function() {
console.log('客户端请求数据已全部接收完毕')
})
}
})
server.listen(8431, 'localhost',function() {
console.log('服务器开始监听')
})
8.1.3 转换URL字符串与查询字符串
- Query String模块
"http://google.com/user.html?userName=gem&age=8#hase" ,其中"userName=gem&age=8"称为一个查询字符串,
可使用Query String模块中的parse方法将字符串转换为一个对象
// querystring.parse(str, [sep], [eq], options)
var querystring = require('querystring')
var obj = querystring.parse('userName=gem&age=8')
console.log(obj)
console.log(obj.userName)
也可以使用Query String模块中的stringfy方法将一个对象转换为查询字符串
var querystring = require('querystring')
var str = querystring.stringify({name: 'gemma', age: 18})
console.log(str) // name=gemma&age=18
- url 模块
parse 方法将URL字符串转换为一个对象
// url.parse(url, [parseQueryString])
var url = require('url')
var obj = url.parse('https://www.baidu.com/s?wd=food¶m2=1/#name1')
console.log(obj)
// url.resolve(from, to)
var newUrl = url.resolve('http://www.baidu.com/a/b/c', '/one')
console.log(newUrl) // http://www.baidu.com/one
...