刚刚开始学习node,在看教程http://www.nodebeginner.org/index-zh-cn.html的过程中,遇到这个问题: function start(){ function onReq(req,res){ res.writeHead(200,{"Content-Type":"text/plain"}); sleep(5000); res.write(“hello”); res.end(); } http.createServer(onReq).listen(9999); console.log(“server has started”); } function sleep(mileSecond){ var time=new Date().getTime(); while(new Date().getTime()<time+mileSecond){
} }
如果同时打开两个页面,访问http://localhost:9999/ 若使先启动的页面不会对第二个页面造成阻塞,代码应该怎么写? 大家帮忙指导一下,谢谢~