首页 > Web开发 > 详细

nodejs路由模块使用

时间:2017-01-24 16:17:51      阅读:221      评论:0      收藏:0      [点我收藏+]
  1. 创建路由模块(route.js)

function route(pathname){

console.log("About to route a request for "+pathname);

}


exports.route = route;

创建http服务模块(server.js)var http = require("http");var url = require("url");function start(route){ function onRequest(request,response){ var pathname = url.parse(request.url).pathname; if (pathname != "/favicon.ico") { console.log("Request for" + pathname + " received"); route(pathname); response.writeHead(200,{"Content-Type":"text/plain"}); response.write("Hello world"); response.end(); } } http.createServer(onRequest).listen(8888); console.log("Server has started");}exports.start = start;创建index.js来使用http服务器模块和路由模块var http = require("./server");var router = require("./route");http.start(router.route);执行index.js并查看结果

执行命令:node index.js

访问如下地址:http://localhost:8888/demo

执行结果:

    Server has started

    Request for /demo received

    About to route a request for /demo

本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1894049

nodejs路由模块使用

原文:http://suyanzhu.blog.51cto.com/8050189/1894049

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!