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 win7下安装方法
May 24 NodeJs
我的NodeJs学习小结(一)
Jul 06 NodeJs
Nodejs实现的一个静态服务器实例
Dec 06 NodeJs
nodejs中使用HTTP分块响应和定时器示例代码
Mar 19 NodeJs
深入nodejs中流(stream)的理解
Mar 27 NodeJs
nodejs 终端打印进度条实例代码
Apr 22 NodeJs
NodeJs通过async/await处理异步的方法
Oct 09 NodeJs
修改Nodejs内置的npm默认配置路径方法
May 13 NodeJs
nodejs异步编程基础之回调函数用法分析
Dec 26 NodeJs
nodejs微信开发之自动回复的实现
Mar 17 NodeJs
nodejs dgram模块广播+组播的实现示例
Nov 04 NodeJs
nodejs利用readline提示输入内容实例代码
Jul 15 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
PHP对MongoDB[NoSQL]数据库的操作
2013/03/01 PHP
javascript判断office版本示例
2014/04/11 Javascript
js实现div闪烁原理及实现代码
2014/06/24 Javascript
javascript ajax的5种状态介绍
2014/08/18 Javascript
基于js与flash实现的网站flv视频播放插件代码
2014/10/14 Javascript
javascript父子页面通讯实例详解
2015/07/17 Javascript
js获取鼠标位置实例详解
2015/12/09 Javascript
BootStrap Validator使用注意事项(必看篇)
2016/09/28 Javascript
canvas 绘制圆形时钟
2017/02/22 Javascript
js实现简单的二级联动效果
2017/03/09 Javascript
easyUI下拉列表点击事件使用方法
2017/05/18 Javascript
js+canvas实现验证码功能
2020/09/21 Javascript
基于vue-cli3创建libs库的实现方法
2019/12/04 Javascript
python实现微信接口(itchat)详细介绍
2017/10/23 Python
浅谈python中对于json写入txt文件的编码问题
2018/06/07 Python
Python机器学习k-近邻算法(K Nearest Neighbor)实例详解
2018/06/25 Python
Python实现识别图片内容的方法分析
2018/07/11 Python
python3.x实现base64加密和解密
2019/03/28 Python
python解压TAR文件至指定文件夹的实例
2019/06/10 Python
Lookfantastic意大利官网:英国知名美妆购物网站
2019/05/31 全球购物
英国莱斯特松木橡木家具网上商店:Choice Furniture Superstore
2019/07/05 全球购物
高中毕业生自我鉴定范文
2013/09/26 职场文书
人事档案接收函
2014/01/12 职场文书
工作个人的自我评价
2014/01/14 职场文书
聘用意向书
2014/07/29 职场文书
爱护公物演讲稿
2014/09/09 职场文书
委托书的写法
2014/09/16 职场文书
税务职业生涯规划书范文
2014/09/16 职场文书
2014年学生会工作总结范文
2014/11/07 职场文书
2015年社区统计工作总结
2015/04/21 职场文书
2015年售后服务工作总结
2015/04/25 职场文书
二年级作文之动物作文
2019/11/13 职场文书
JavaScript 实现页面滚动动画
2021/04/24 Javascript
pandas:get_dummies()与pd.factorize()的用法及区别说明
2021/05/21 Python
Python+Selenium自动化环境搭建与操作基础详解
2022/03/13 Python
Java 数据结构七大排序使用分析
2022/04/02 Java/Android