nodejs之请求路由概述


Posted in NodeJs onJuly 05, 2014

通常来说对于不同的URL请求,服务器应该有不同的反应。我们要为路由提供请求的URL和其他需要的GET及POST参数,随后路由需要根据这些数据来执行相应的代码。我们需要的所有数据都会包含在request对象中,该对象作为onRequest()回调函数的第一个参数传递。为了解析这些数据,需要调用额外的模块,分别是url和querystring模块。
 
URL:This
 module has utilities for URL resolution and parsing. Call require('url') to
 use it.
 
Parsed URL objects have some or all of the following fields, depending on whether or not they exist in the URL string. Any parts that are not in the URL string will not be in the parsed object. Examples are shown for the URL
 
'http://user:pass@host.com:8080/p/a/t/h?query=string#hash'
 
href: The full URL that was originally parsed. Both the protocol and host are lowercased.
Example: 'http://user:pass@host.com:8080/p/a/t/h?query=string#hash'
 
protocol: The request protocol, lowercased.
Example: 'http:'
 
host: The full lowercased host portion of the URL, including port information.
Example: 'host.com:8080'
 
auth: The authentication information portion of a URL.
Example: 'user:pass'
 
hostname: Just the lowercased hostname portion of the host.
Example: 'host.com'
 
port: The port number portion of the host.
Example: '8080'
 
pathname: The path section of the URL, that comes after the host and before the query, including the initial slash if present.
Example: '/p/a/t/h'
 
search: The 'query string' portion of the URL, including the leading question mark.
Example: '?query=string'
 
path: Concatenation of pathname and search.
Example: '/p/a/t/h?query=string'
 
query: Either the 'params' portion of the query string, or a querystring-parsed object.
Example: 'query=string' or {'query':'string'}
 
hash: The 'fragment' portion of the URL including the pound-sign.
Example: '#hash'
 
我们将使用依赖注入的方式较松散地添加路由模块。作为路由目标的函数称为请求处理程序,请求处理函数的实现需要创建一个叫做requestHandlers的模块,当然也可以命名为其他。并对于每一个请求处理程序,添加一个占位用函数,随后将这些函数作为模块的方法导出,这样就可以将请求处理程序和路由模块连接起来,让路由有路可循。
 
特别指出的是,这里需要将一系列请求处理程序通过一个对象来传递,并且需要使用松耦合的方式将这个对象注入到route()函数中。

我们可以用从关联数组中获取元素一样的方式从传递的对象中获取请求处理函数,因此就有了简洁流畅的形如handle[pathname]();的表达式。代码如下所示:

var handle = {}
handle["/"] = requestHandlers.start;
handle["/start"] = requestHandlers.start;
handle["/upload"] = requestHandlers.upload;
NodeJs 相关文章推荐
Nodejs sublime text 3安装与配置
Jun 19 NodeJs
nodejs爬虫抓取数据之编码问题
Jul 03 NodeJs
nodejs如何获取时间戳与时间差
Aug 03 NodeJs
nodejs根据ip数组在百度地图中进行定位
Mar 06 NodeJs
nodejs使用express创建一个简单web应用
Mar 31 NodeJs
NodeJS基础API搭建服务器详细过程记录
Apr 01 NodeJs
nodejs+websocket实时聊天系统改进版
May 18 NodeJs
nodejs中解决异步嵌套循环和循环嵌套异步的问题
Jul 12 NodeJs
在Debian(Raspberry Pi)树莓派上安装NodeJS的教程详解
Sep 19 NodeJs
监控Nodejs的性能实例代码
Jul 02 NodeJs
NodeJS 文件夹拷贝以及删除功能
Sep 03 NodeJs
Nodejs 数组的队列以及forEach的应用详解
Feb 25 NodeJs
Nodejs中自定义事件实例
Jun 20 #NodeJs
Nodejs sublime text 3安装与配置
Jun 19 #NodeJs
nodejs实现黑名单中间件设计
Jun 17 #NodeJs
nodejs分页类代码分享
Jun 17 #NodeJs
nodejs npm包管理的配置方法及常用命令介绍
Jun 05 #NodeJs
nodejs npm install全局安装和本地安装的区别
Jun 05 #NodeJs
nodejs文件操作模块FS(File System)常用函数简明总结
Jun 05 #NodeJs
You might like
9个实用的PHP代码片段分享
2015/01/22 PHP
学习php设计模式 php实现工厂模式(factory)
2015/12/07 PHP
thinkPHP js文件中U方法不被解析问题的解决方法
2016/12/05 PHP
thinkphp 验证码 的使用小结
2017/05/07 PHP
麦鸡的TAB切换功能结合了javascript和css
2007/12/17 Javascript
MooTools 1.2介绍
2009/09/14 Javascript
读jQuery之五(取DOM元素)
2011/06/20 Javascript
jQuery中(function(){})()执行顺序的理解
2013/03/05 Javascript
js中直接声明一个对象的方法
2014/08/10 Javascript
使用 JavaScript 进行函数式编程 (一) 翻译
2015/10/02 Javascript
jquery.form.js框架实现文件上传功能案例解析(springmvc)
2016/05/26 Javascript
JavaScript蒙板(model)功能的简单实现代码
2016/08/04 Javascript
JS字符串false转boolean的方法(推荐)
2017/03/08 Javascript
JavaScript模块化之使用requireJS按需加载
2017/04/12 Javascript
基于Bootstrap表单验证功能
2017/11/17 Javascript
详解layui弹窗父子窗口之间传参数的方法
2018/01/16 Javascript
详解Vue.js项目API、Router配置拆分实践
2018/03/16 Javascript
详解如何使用微信小程序云函数发送短信验证码
2019/03/13 Javascript
使用vue制作滑动标签
2019/09/21 Javascript
node读写Excel操作实例分析
2019/11/06 Javascript
nodejs制作小爬虫功能示例
2020/02/24 NodeJs
JS快速实现简单计算器
2020/04/08 Javascript
python判断输入日期为第几天的实例
2018/11/13 Python
python实现五子棋游戏
2019/06/18 Python
Python Pandas 转换unix时间戳方式
2019/12/07 Python
css3中检验表单的required,focus,valid和invalid样式
2014/02/21 HTML / CSS
如何利用input事件来监听移动端的输入
2016/04/15 HTML / CSS
英国Boots旗下太阳镜网站:Boots Designer Sunglasses
2018/07/07 全球购物
英国领先的隐形眼镜在线供应商:Lenstore.co.uk
2019/11/24 全球购物
日本动漫周边服饰销售网站:Atsuko
2019/12/16 全球购物
Trench London官方网站:高级风衣和意大利皮夹克
2020/07/11 全球购物
如何客观的进行自我评价
2013/12/17 职场文书
2015婚礼主持词开场白
2015/05/28 职场文书
2016入党积极分子党校培训心得体会
2016/01/06 职场文书
分享几个JavaScript运算符的使用技巧
2021/04/24 Javascript
如何设置多台电脑共享打印机?多台电脑共享打印机的方法
2022/04/08 数码科技