首页 > Web开发 > 详细

node.js学习笔记_模拟路由

时间:2016-11-08 23:14:51      阅读:311      评论:0      收藏:0      [点我收藏+]
 
路由就是浏览器输入url地址,服务端根据对url地址的解析,访问对应的代码模块。
var    http    =    require(‘http‘);
var    url    =    require(‘url‘);
var    router    =    require(‘./router‘);
http.createServer(function    (request,    response)    {
        response.writeHead(200,    {‘Content-Type‘:    ‘text技术分享ml;    charset=utf-8‘});
        if(request.url!=="/favicon.ico"){
                var    pathname    =    url.parse(request.url).pathname;
        //console.log(pathname);
                pathname    =    pathname.replace(/\//,    ‘‘);//替换掉前面的/
        //console.log(pathname); //输出要调用的方法名,从url中解析出来
        router[pathname](request,response);
                response.end(‘‘);
        }
}).listen(8000);
console.log(‘Server    running    at    http://127.0.0.1:8000/‘);

//-----------------router.js--------------------------------
module.exports={
    login:function(req,res){
        res.write("我是login方法");
    },
    zhuce:function(req,res){
        res.write("我是注册方法");
    }
}
技术分享http://study.163.com/course/introduction/1003228034.htm#/courseDetail

node.js学习笔记_模拟路由

原文:http://www.cnblogs.com/pkutao/p/6044705.html

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