这篇文章将为大家详细讲解有关使用Node.js怎么实现一个HTTP服务器,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
用户打开网址 127.0.0.1:8080
时,客户端发起 get 请求,请求路径为 /
,服务端返回 login.html 页面。
if(request.url==='/'){
fs.readFile('./login.html',function(err,data){
if(!err){
response.writeHead(200,{"Content-Type":"text/html;charset=UTF-8"});
response.end(data)
}else{
throwerr;
}
});
}
当用户试图通过浏览器地址访问 /index
时,服务端会判断请求头是否携带 cookie ,若没有则将请求重定向到 /
。
if(!request.headers.cookie){
response.writeHead(301,{'Location':'/'})
response.end()
}
如果有携带 cookie ,则将浏览器重定向到 index.html 页面
window.location.href='/index'
用户在 login.html 界面输入用户名并点击登录,客户端会携带用户名发起一个 post 请求
letinput={
name:document.querySelector('.input').value
}
letrequest=newXMLHttpRequest();//新建XMLHttpRequest对象
request.open('POST','/login',true)
request.send(JSON.stringify(input))
服务端接收参数,设置 cookie
letinput={
name:document.querySelector('.input').value
}
letrequest=newXMLHttpRequest();//新建XMLHttpRequest对象
request.open('POST','/login',true)
request.send(JSON.stringify(input))
如果客户端发情 HEAD 请求,只返回相应头
if(request.url==='/getHead'){
response.writeHead(200);
response.end()
}
关于使用Node.js怎么实现一个HTTP服务器就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。