nodejs入门--简单的请求处理案例

首先,让请求处理程序返回需要在浏览器中显示的信息开始,在项目根目录中建立requestHandler.js,并写入以下内容:

function start(){
console.log("Reaquest handler 'start' was called.");
return "Hello Start";
}

function upload(){
console.log("Request handler 'upload' was called.");
return "Hellow
Upload";
}

exports.start=start;
exports.upload=upload;

请求路由需要将请求处理程序返回给他的信息返回给服务器,因此,我们需要新建一个router.js,并增加以下内容:
function route(handle,pathname) {
console.log("About to route a requeset for"+pathname);
if(typeof handle[pathname]==="function"){
return handle[pathname]();
}else{
console.log("No request handler found for "+pathname);
return "404 Not found";
}
}

exports.route=route;

正如上述代码所示,当请求无法路由的时候,我们也返回了一些相关的错误信息。最后,我们需要建立server.js使得它能够将请求处理程序通过请求路由返回的内容响应给浏览器,如下所示:
 
 
var http = require("http");
var url = require("url");

function start(route,handle){
function onRequest(request,response){
var pathname = url.parse(request.url).pathname;
console.log("Request for"+pathname+"received.");
response.writeHead(200,{"Content-Type":"text/plain"});
var content = route(handle,pathname);
response.write(content);
response.end();
}
http.createServer(onRequest).listen(8888);
console.log("Server has started..");
}

exports.start=start;
最后,建立我们的index.js,并运行
var server = require("./server");
var router = require("./route");
var requestHandles = require("./requestHandlers");

var handle = {};
handle["/"]=requestHandles.start;
handle["/start"]=requestHandles.start;
handle["/upload"]=requestHandles.upload;

server.start(router.route,handle);


当我们请求http://localhost:8888/start,浏览器会输出“hello start”,当输入http://localhost:8888/upload,浏览器会输出“hello Upload”,
当请求http://localhost:8888/end,会显示“404 Not found”,一个简单的请求处理的nodejs案例就实现了。
 


转载于:https://www.cnblogs.com/Ifengyin/p/6559577.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值