Node.js之HTPP服务一

几乎每门编程语言都会包括网络这块,Node.js也不例外。今天主要是熟悉下Node.js中HTTP服务。其实HTTP模块是相当低层次的,它不提供路由、cookie、缓存等,像Web开发中不会直接使用,但还是要熟悉下,这样也方便以后的学习。

一、统一资源标识符URL

这个是非常常见的,在Node.js中有几种处理。

http://user:[email protected]:80/resource/path/?query=string#hash

协议://身份认证@主机名.com:端口/路径/搜索/查询#散列

在URL模块中可以URL定义的属性和方法

exports.parse = urlParse;
exports.resolve = urlResolve;
exports.resolveObject = urlResolveObject;
exports.format = urlFormat;

exports.Url = Url;

function Url() {
  this.protocol = null;
  this.slashes = null;
  this.auth = null;
  this.host = null;
  this.port = null;
  this.hostname = null;
  this.hash = null;
  this.search = null;
  this.query = null;
  this.pathname = null;
  this.path = null;
  this.href = null;
}

上面代码可以看到URL模块定义了protocol、slashes等这些属性,还有parse、resolve 等方法.

1、URL字符串转URL对象 parse

/**
 * Created by Administrator on 2016/3/26.
 */
var url=require(‘url‘);
var urlStr=‘http://user:[email protected]:80/rseource/path?query=string#hash‘;
//parse(urlStr,[parseQueryString],[slashesDenoteHost])
//parseQueryString 布尔值 true:URL查询字符串部分解析为对象字面量默认false
//slashesDenoteHost 布尔值 true:把格式为//host/path的URL解析为:{host:‘host‘,pathname:‘/path‘},而不是{pathname:‘//host/path‘} 默认false
var urlObj=url.parse(urlStr,true,false);
console.log(urlObj);
"C:\Program Files (x86)\JetBrains\WebStorm 11.0.3\bin\runnerw.exe" F:\nodejs\node.exe URL.js
Url {
  protocol: ‘http:‘,
  slashes: true,
  auth: ‘user:pass‘,
  host: ‘host.com:80‘,
  port: ‘80‘,
  hostname: ‘host.com‘,
  hash: ‘#hash‘,
  search: ‘?query=string‘,
  query: { query: ‘string‘ },
  pathname: ‘/rseource/path‘,
  path: ‘/rseource/path?query=string‘,
  href: ‘http://user:[email protected]:80/rseource/path?query=string#hash‘ }

Process finished with exit code 0

2.URL重定向resolve

有时候请求的url和实际的物理地址并不一样,这就要进行虚拟地址和物理地址的转换。

var url=require(‘url‘);
var originalUrl=‘http://user:[email protected]:80/rseource/path?query=string#hash‘;
var newResource=‘/another/path?querynew‘;
console.log(url.resolve(originalUrl,newResource));
"C:\Program Files (x86)\JetBrains\WebStorm 11.0.3\bin\runnerw.exe" F:\nodejs\node.exe URL.js
http://user:[email protected]:80/another/path?querynew

Process finished with exit code 0

3.处理查询字符串和表单参数

在做web开发中常常需要向服务端get 、post请求,请求的时候可能会带一些参数,需要对参数进行处理.比如:查询字符串转js对象或js对象转字符串。

这里要用到queryString模块的parse()和stringify()函数。

var qString=require(‘querystring‘)
//QueryString.parse = QueryString.decode = function(qs, sep, eq, options)
//1.qs 字符串
//2.sep 使用的分隔符 默认&
//3.ep 使用的运算符 默认=
//4.一个具有maxKey属性的对象 能够限制生成的对象可以包含的键的数量默认1000,0则无限制
var  params=qString.parse("name=cuiyanwei&color=red&color=blue");
console.log(params);
//QueryString.stringify = QueryString.encode = function(obj, sep, eq, options)
console.log(qString.stringify(params,"&","="));
"C:\Program Files (x86)\JetBrains\WebStorm 11.0.3\bin\runnerw.exe" F:\nodejs\node.exe URL.js
{ name: ‘cuiyanwei‘, color: [ ‘red‘, ‘blue‘ ] }
name=cuiyanwei&color=red&color=blue

Process finished with exit code 0
时间: 2024-11-06 20:31:27

Node.js之HTPP服务一的相关文章

Node.js发布http服务

Node.js发布http服务 2018-11-09 09:43:03   Visit  0 简单服务 var http = require(\'http\'); http.createServer(function (request, response) { // 发送 HTTP 头部 // HTTP 状态值: 200 : OK // 内容类型: text/plain response.writeHead(200, {\'Content-Type\': \'text/plain\'}); //

基于OpenResty和Node.js的微服务架构实践

什么是微服务? 传统的单体服务架构是单独服务包,共享代码与数据,开发成本较高,可维护性.伸缩性较差,技术转型.跨语言配合相对困难.而微服务架构强调一个服务负责一项业务,服务可以单独部署,独立进行技术选型和开发,服务间松耦合,服务依赖的数据也独立维护管理.虽然微服务存在部署复杂.运维难度较大.分布式事务控制难.容错要求高等缺点,但总体而言,微服务的优点远大于其复杂性. 微服务架构需要注意哪些问题? 微服务架构,首先考虑客户端与服务端之间的通信问题.有两种解决办法,一是客户端与多个服务端直接进行通信

Node.js部署到服务器之后台守护进程管理器Forever

我们不可能直接通过node命令来管理远程站点,这样无法保证网站的可持续运行.我们用Forever来解决这个问题,它可以将NodeJS应用以后台守护进程的方式运行,我们还可以将NodeJS应用设成随系统启动而自动运行. 首先,安装Forever: npm install forever -gd 这样Forever就安装好了,我们可以直接运行Forever命令: forever --help forever start app.js forever stop app.js 上面命令先查看Foreve

node.js 调用第三方服务

node作为客户端调用第三方服务   nodejs.cn/api 1. let http = require('http'); let util = require("util"); http.get('http://www.imooc.com/u/card',(res)=>{ let data = ""'; res.on("data",(chunk)=>{ data += chunk; }); res.on("end&qu

node.js创建简单服务测试请求数据

工具:安装node: 1,创建文件夹 server, 2 ,在server文件夹下分别创建server.js 和 package.json 文件 3,server.js 代码: 1 var express = require('express'); 2 var app=express(); 3 4 app.all('*', function(req, res, next) { 5 res.header("Access-Control-Allow-Origin", "*&quo

Node.js 构建HTTP服务

Node中的HTTP模块 TCP和UDP都属于网络传输协议,如果要构架高效的网络应用,就应该从传输层着手,但是对于经典的浏览器网页和服务器端通信场景,如果单纯的使用更底层的传输协议则会变得麻烦. 所以对于经典的B(browser)S(server)通信,基于传输层之上专门制定了更上一层的通信协议:HTTP,用于浏览器和服务端进行通信,由于HTTP协议本身并不考虑数据如何传输及其他细节问题,所以属于应用层协议. Node提供了基于HTTP和HTTPS模块用于HTPP和HTTPS的封装. count

Node.js 构建TCP服务

构建TCP服务 三次握手连接: 1.客户端请求连接 2.服务器响应 3.开始传输 服务端 // 构建TCP服务 服务端 const net = require('net') const server = net.createServer() server.on('connection', clientSocket => { console.log('有新的客户端连接了') //服务端通过 clientSocket 监听 data 事件 clientSocket.on('data', data =

node.js + express搭建服务流程

1. nodejs安装 参考博客: nodejs安装 https://www.jianshu.com/p/d68e461f585c 2.express安装 参考博客: https://www.cnblogs.com/lpxj-blog/p/10651728.html 3.常用npm命令 npm -v   : list version npm init : 初始化 会根据输入信息生成一个描述项目用的json文件, 一路回车键即可 npm  install : 安装初始包 npm install x

Pomelo:网易开源基于 Node.js 的游戏服务端框架

https://github.com/NetEase/pomelo/wiki/Home-in-Chinese