Nodejs封装类似express框架的路由实例详解


Posted in NodeJs onJanuary 05, 2020

代码如下

var http=require('http');

var ejs=require('ejs');

var app=require('./model/express-route.js');

console.log(app);

http.createServer(app).listen(3000);

app.get('/',function(req,res){

  var msg='这是数据库的数据'

  ejs.renderFile('views/index.ejs',{msg:msg},function(err,data){

    res.send(data);
  })
})


//登录页面
app.get('/login',function(req,res){

  console.log('login');

  ejs.renderFile('views/form.ejs',{},function(err,data){

    res.send(data);
  })

})

//执行登录
app.post('/dologin',function(req,res){

  console.log(req.body); /*获取post传过来的数据*/

  res.send("<script>alert('登录成功');history.back();</script>")
})


app.get('/register',function(req,res){

  console.log('register');

  res.send('register');
})

app.get('/news',function(req,res){

  console.log('register');

  res.send('新闻数据');
})

express-route.js

var url=require('url');

//封装方法改变res 绑定res.send()
function changeRes(res){

  res.send=function(data){

    res.writeHead(200,{"Content-Type":"text/html;charset='utf-8'"});

    res.end(data);
  }
}

//暴露的模块
var Server=function(){


  var G=this;  /*全局变量*/

  //处理get和post请求
  this._get={};

  this._post={};



  var app=function(req,res){


    changeRes(res);

    //获取路由
    var pathname=url.parse(req.url).pathname;
    if(!pathname.endsWith('/')){
      pathname=pathname+'/';
    }

    //获取请求的方式 get post
    var method=req.method.toLowerCase();


    if(G['_'+method][pathname]){

      if(method=='post'){ /*执行post请求*/

        var postStr='';
        req.on('data',function(chunk){

          postStr+=chunk;
        })
        req.on('end',function(err,chunk) {

          req.body=postStr; /*表示拿到post的值*/


          //G._post['dologin'](req,res)

          G['_'+method][pathname](req,res); /*执行方法*/

        })



      }else{ /*执行get请求*/
        G['_'+method][pathname](req,res); /*执行方法*/

      }

    }else{

      res.end('no router');
    }

  }

  app.get=function(string,callback){
    if(!string.endsWith('/')){
      string=string+'/';
    }
    if(!string.startsWith('/')){
      string='/'+string;

    }

    //  /login/
    G._get[string]=callback;

  }

  app.post=function(string,callback){
    if(!string.endsWith('/')){
      string=string+'/';
    }
    if(!string.startsWith('/')){
      string='/'+string;

    }
    //  /login/
    G._post[string]=callback;

    //G._post['dologin']=function(req,res){
    //
    //}
  }

  return app;

}

module.exports=Server();

以上代码很简单,大家可以测试下,如果有任何疑问和补充可以联系小编,更多内容可以查看以下相关知识点。

NodeJs 相关文章推荐
nodejs创建web服务器之hello world程序
Aug 20 NodeJs
NodeJS连接MongoDB数据库时报错的快速解决方法
May 13 NodeJs
基于NodeJS+MongoDB+AngularJS+Bootstrap开发书店案例分析
Jan 12 NodeJs
angular2+nodejs实现图片上传功能
Mar 27 NodeJs
Nodejs中Express 常用中间件 body-parser 实现解析
May 22 NodeJs
详解NODEJS基于FFMPEG视频推流测试
Nov 17 NodeJs
nodejs简单实现TCP服务器端和客户端的聊天功能示例
Jan 04 NodeJs
nodejs中Express与Koa2对比分析
Feb 06 NodeJs
Nodejs模块载入运行原理
Feb 23 NodeJs
Nodejs调用Dll模块的方法
Sep 17 NodeJs
nodejs搭建本地服务器并访问文件操作示例
May 11 NodeJs
nodejs环境使用Typeorm连接查询Oracle数据
Dec 05 NodeJs
nodejs对mongodb数据库的增加修删该查实例代码
Jan 05 #NodeJs
nodejs开发一个最简单的web服务器实例讲解
Jan 02 #NodeJs
nodejs环境使用Typeorm连接查询Oracle数据
Dec 05 #NodeJs
nodejs中使用archive压缩文件的实现代码
Nov 26 #NodeJs
NodeJS实现一个聊天室功能
Nov 25 #NodeJs
Nodejs使用archiver-zip-encrypted库加密压缩文件时报错(解决方案)
Nov 18 #NodeJs
NodeJs crypto加密制作token的实现代码
Nov 15 #NodeJs
You might like
有关 PHP 和 MySQL 时区的一点总结
2008/03/26 PHP
php生成xml简单实例代码
2009/12/16 PHP
php feof用来识别文件末尾字符的方法
2010/08/01 PHP
怎么在Windows系统中搭建php环境
2013/08/31 PHP
PHP对接微信公众平台消息接口开发流程教程
2014/03/25 PHP
PHP面向对象之后期静态绑定功能介绍
2015/05/18 PHP
在PHP中使用FastCGI解析漏洞及修复方案
2015/11/10 PHP
thinkPHP数据库增删改查操作方法实例详解
2016/12/06 PHP
利用jQuery操作对象数组的实现代码
2011/04/27 Javascript
jQuery实现类似滑动门切换效果的层切换
2013/09/23 Javascript
jquery $.each 和for怎么跳出循环终止本次循环
2013/09/27 Javascript
javascript写的一个模拟阅读小说的程序
2014/04/04 Javascript
js使用ajax读博客rss示例
2014/05/06 Javascript
Jquery响应回车键直接提交表单操作代码
2014/07/25 Javascript
Bootstrap每天必学之滚动监听
2016/03/16 Javascript
JavaScript实现的搜索及高亮显示功能示例
2017/08/14 Javascript
JavaScript中各数制转换全面总结
2017/08/21 Javascript
vue左右侧联动滚动的实现代码
2018/06/06 Javascript
微信小程序自定义多列选择器使用详解
2019/06/21 Javascript
[01:01:42]Secret vs Optic Supermajor 胜者组 BO3 第二场 6.4
2018/06/05 DOTA
Python编程实现二分法和牛顿迭代法求平方根代码
2017/12/04 Python
Python selenium实现微博自动登录的示例代码
2018/05/16 Python
Python使用logging模块实现打印log到指定文件的方法
2018/09/05 Python
几行Python代码爬取3000+上市公司的信息
2019/01/24 Python
Python面向对象程序设计中类的定义、实例化、封装及私有变量/方法详解
2019/02/28 Python
django foreignkey(外键)的实现
2019/07/29 Python
html5 sessionStorage会话存储_动力节点Java学院整理
2017/07/06 HTML / CSS
美国大尺码女装零售商:TORRID
2016/10/01 全球购物
红色连衣裙精品店:Red Dress Boutique
2018/08/11 全球购物
.net C#面试题
2012/08/28 面试题
给护士表扬信
2014/01/19 职场文书
竞争性谈判邀请书
2014/02/06 职场文书
个人四风问题对照检查材料思想汇报
2014/10/06 职场文书
2015年全国爱眼日活动方案
2015/05/05 职场文书
解决vue $http的get和post请求跨域问题
2021/06/07 Vue.js
一次SQL查询优化原理分析(900W+数据从17s到300ms)
2022/06/10 SQL Server