node.js中express模块创建服务器和http模块客户端发请求
首先下载express模块,命令行输入
npm install express
1.node.js中express模块创建服务端
在js代码同文件位置新建一个文件夹(www_root),里面存放网页文件等,就可以在浏览器中访问了
var express = require("express");
var path = require("path");
var app = express();
//目录 (当前目录下的www_root目录)
app.use(express.static(path.join(process.cwd(),"www_root")));
//监听
var server = app.listen(6080);
app.get('/', function (req, res) {
//发送数据
res.send('Hello World ~~~~~~~~~~~~!');
});
// get, 处理响应
app.get("/login", function (request, respones) {
console.log("/login comming");
// 服务器收到请求后,获取客户端get操作参数
console.log(request.query);
// 服务器回信息给客户端
respones.send("已连接上服务器~~");
});
app.post("/upload", function(request, respones) {
console.log("/upload comming");
// 获得url上传来的参数
console.log(request.query);
// 获得用户给我们发送过来的数据
// 监听我们的data来获得
request.on("data", function(data) {
console.log(data.toString());
respones.send("UPLOAD OK");
});
});
2.http模块客户端发请求
(实例1)http_get测试
var http = require("http");
/*
callback(is_success, data/erro)
*/
function http_get(ip, port, url, params, callback){
//创建一个http.ClientRequest对象
var options = {
host : ip,
port : port,
path : url+"?"+params,
method : "GET",
};
var request = http.request(options,function(incoming_msg){
console.log("get respones");
});
//发送这个请求
request.end();
}
http_get("127.0.0.1", 6080, "/login", "uname=jadeshu&upw=123456", function(is_ok,data){
});
(实例2)http_get、http_post测试
var http = require("http");
/*
[100] = "Continue",
[101] = "Switching Protocols",
[200] = "OK",
[201] = "Created",
[202] = "Accepted",
[203] = "Non-Authoritative Information",
[204] = "No Content",
[205] = "Reset Content",
[206] = "Partial Content",
[300] = "Multiple Choices",
[301] = "Moved Permanently",
[302] = "Found",
[303] = "See Other",
[304] = "Not Modified",
[305] = "Use Proxy",
[307] = "Temporary Redirect",
[400] = "Bad Request",
[401] = "Unauthorized",
[402] = "Payment Required",
[403] = "Forbidden",
[404] = "Not Found",
[405] = "Method Not Allowed",
[406] = "Not Acceptable",
[407] = "Proxy Authentication Required",
[408] = "Request Time-out",
[409] = "Conflict",
[410] = "Gone",
[411] = "Length Required",
[412] = "Precondition Failed",
[413] = "Request Entity Too Large",
[414] = "Request-URI Too Large",
[415] = "Unsupported Media Type",
[416] = "Requested range not satisfiable",
[417] = "Expectation Failed",
[500] = "Internal Server Error",
[501] = "Not Implemented",
[502] = "Bad Gateway",
[503] = "Service Unavailable",
[504] = "Gateway Time-out",
[505] = "HTTP Version not supported",
}
*/
/*
callback(is_success, data/erro)
*/
// get请求的参数,是带在URL的地址上面的
function http_get(ip, port, url, params, callback) {
// step1,创建一个 http.ClientRequest
var options = {
host: "127.0.0.1",
port: port,
path: url + "?" + params,
method: "GET"
};
// 当有请求返回的时候,参数就会被传递为http.IncomingMessage
var req = http.request(options, function(incoming_msg) {
console.log("respones status " + incoming_msg.statusCode);
// 监听IncomingMessage的data事件,当收到服务器发过来的数据的时候,触发这个事件
incoming_msg.on("data", function(data) {
if (incoming_msg.statusCode === 200) {
callback(true, data);
}
});
});
// 把这个请求发送出去
req.end();
}
/*
http_get("127.0.0.1", 6080, "/login", "uname=blake&upwd=123456", function(is_ok, data) {
if (is_ok) {
console.log(data.toString());
}
});
*/
// post可以带body数据传到服务器
function http_post(ip, port, url, params, body, callback) {
// step1,创建一个 http.ClientRequest
var options = {
host: "127.0.0.1",
port: port,
path: url + "?" + params,
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"Content-Length": body.length
}
};
var req = http.request(options, function(incoming_msg) {
console.log("respones status " + incoming_msg.statusCode);
// 监听IncomingMessage的data事件,当收到服务器发过来的数据的时候,触发这个事件
incoming_msg.on("data", function(data) {
if (incoming_msg.statusCode === 200) {
callback(true, data);
}
});
});
// step2 写入body数据
req.write(body);
// 发送请求
req.end();
}
http_post("127.0.0.1", 6080, "/upload", "filename=my_file.txt", "Hello Htpp Post", function(is_ok, data) {
if (is_ok) {
console.log("upload_success", data.toString());
}
});
node.js中express模块创建服务器和http模块客户端发请求的更多相关文章
- node.js中express框架的基本使用
express是一个基于node.js平台的,快速,开放,极简的web开发框架. 一.安装 express npm install express --save 二.简单使用 express //引入 ...
- node.js中express的Router路由的使用
express中的Router作用就是为了方便我们更好的根据路由去分模块.避免将所有路由都写在入口文件中. 一.简单的使用Router const express = require('express ...
- node.js中使用 http-proxy 创建代理服务器
代理,也称网络代理,是一种特殊网络服务,允许一个终端通过代理服务与另一个终端进行非直接的连接,这样利于安全和防止被攻击. 代理服务器,就是代理网络用户去获取网络信息,就是信息的中转,负责转发. 代理又 ...
- node.js中express使用cookie-parser 和 cookie-session处理会话
cookie-parser 中间件用来解析客户端传过来的cookie,cookie-session 中间件用来建立基于cookie的会话session. 一.安装 cookie-parser 和 co ...
- node.js中 express + multer 处理文件上传
multer中间件,可以很方便的结合express处理用户表单上传的文件. 一.安装multer npm install multer 二.处理单个文件上传 const express = requi ...
- node.js中fs文件系统模块的使用
node.js中为我们提供了fs文件系统模块,实现对文件或目录的创建,修改和删除等操作. fs模块中,所有的方法分为同步和异步两种实现. 有 sync 后缀的方法为同步方法,没有 sync 后缀的方法 ...
- node.js中使用http模块创建服务器和客户端
node.js中的 http 模块提供了创建服务器和客户端的方法,http 全称是超文本传输协议,基于 tcp 之上,属于应用层协议. 一.创建http服务器 const http = require ...
- node.js中通过dgram数据报模块创建UDP服务器和客户端
node.js中 dgram 模块提供了udp数据包的socket实现,可以方便的创建udp服务器和客户端. 一.创建UDP服务器和客户端 服务端: const dgram = require('dg ...
- node.js中net模块创建服务器和客户端(TCP)
node.js中net模块创建服务器和客户端 1.node.js中net模块创建服务器(net.createServer) // 将net模块 引入进来 var net = require(" ...
随机推荐
- [development][C] linux 设置线程名称
两个API, 都是linux的. 不是POSIX, 是GNU? 傻傻搞不清楚. 1. pthread_setname_np / pthread_setname_np 2. ptctl 带 PR_GE ...
- HBase 笔记
参考资料:HBase权威指南 一行由若干列组成,若干列又构成一个列族一个列族的所有列存储在同一个底层的存储文件里,这个文件叫HFile列族的数量有限制:一个列族里列的数量没限制谓词删除:例如允许用户只 ...
- ADO多线程数据库总结
ADO多线程数据库查询通常会出现以下问题: 1.CoInitialize 没有调用(CoInitialize was not called):所以,在使用任何dbGo对象前,必须手 调用CoIniti ...
- 第一章:深入.NET框架
1..net框架结构 主要包含公共语言运行时(CLR)和框架类库(.NET Framework 类库 ,FCL) 2.CLR 1.对于一个将要面向.NET平台进行开发的人来说,了解一下.NET平台的 ...
- MyBatis传递参数
MyBatis传递参数 一.使用 map 接口传递参数 在 MyBatis 中允许 map 接口通过键值对传递多个参数,把接口方法定义为 : public List<Role> findR ...
- react native获取屏幕的宽度和高度
var Dimensions = require('Dimensions'); var {width,height} = Dimensions.get("window");//第一 ...
- RCNN
[Rich feature hierarchies for accurate object detection and semantic segmentation] 技术路线:selective se ...
- eclipse 优化
1.取消验证 windows–>perferences–>validation 把 除了manual 下面的全部点掉,build下只留 classpath dependency Valid ...
- GOROOT、GOPATH、GOBIN
GOROOT golang安装路径. GOPATH GOPATH可以设置多个工程目录,linux下用冒号分隔(必须用冒号,fish shell的空格分割会出错),windows下用分号分隔,但是go ...
- [py]__name__ 属于哪个文件
name: 属于哪个文件 文件的 main 类的 class Person(object): """ 定义一个类 """ count = 1 ...