Node.js【GET/POST请求、http模块、路由、创建客户端、作为中间层、文件系统模块】(二)-全面详解(学习总结---从入门到深化)

目录

[Node.js Stream(流)(三)](#Node.js Stream(流)(三))

[Node.js http模块](#Node.js http模块)

[Node.js GET/POST请求(一)](#Node.js GET/POST请求(一))

[Node.js GET/POST请求(二)](#Node.js GET/POST请求(二))

[Node.js 路由](#Node.js 路由)

[Node.js 创建客户端](#Node.js 创建客户端)

[Node.js 作为中间层](#Node.js 作为中间层)

[Node.js 文件系统模块(一)](#Node.js 文件系统模块(一))


Node.js Stream(流)(三)

1、管道流

管道提供了一个数据从输出流到输入流的机制。

我们使用管道可以从一个流中获取数据并将数据传递到另外一个流中。

举例:复制文件

我们把文件比作装水的桶,而水就是文件里的内容,我们用一根管子 **(pipe)**连接两个桶使得水从一个桶流入另一个桶,这样就慢慢的实现了大文件的复制过程。

javascript 复制代码
var fs = require("fs");
// 创建一个可读流
var readerStream = fs.createReadStream('input.txt');
// 创建一个可写流
var writerStream = fs.createWriteStream('output.txt');
// 管道读写操作
// 读取 input.txt 文件内容,并将内容写入到output.txt 文件中
readerStream.pipe(writerStream);

2、链式流

链式是通过连接输出流到另外一个流并创建多个流操作链的机制。
**pipe()**方法的返回值是目标流。

javascript 复制代码
var fs = require("fs");
var zlib = require('zlib');
// 压缩 input.txt 文件为 input.txt.gz
fs.createReadStream('input.txt').pipe(zlib.createGzip()).pipe(fs.createWriteStream('input.txt.gz')
);
javascript 复制代码
var fs = require("fs");
var zlib = require('zlib');
// 解压 input.txt.gz 文件为 input.txt
fs.createReadStream('input.txt.gz').pipe(zlib.createGunzip()).pipe(fs.createWriteStream('input.txt'));

Node.js http模块

HTTP 核心模块是 Node.js 网络的关键模块。

使用该模块可以创建web服务器。

1、引入http模块

javascript 复制代码
const http = require('http') 

2、创建 Web 服务器

javascript 复制代码
//返回 http.Server 类的新实例
//req是个可读流
//res是个可写流
const server=http.createServer( function (req, res) {
 
  res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
  res.write('服务器响应了,这是响应内容')
  res.end()
})

3、启动服务器并监听某个端口

javascript 复制代码
server.listen('3030',function(){
    console.log('服务器已做好准备,正在监听3030端口')
})

Node.js GET/POST请求(一)

1、获取 POST 请求内容

html 复制代码
<!-- test.html -->
<form id="form1" action="http://localhost:3030" method="post">
   姓名:<input type="text" name="name"><br />
   年龄:<input type="text" name="age"><br />
    <input type="submit" value="提交"
/>
</form>
javascript 复制代码
//test.js
const http=require('http')
const querystring = require('querystring')
const server = http.createServer((req, res) => {
  var bodyStr = ''
    req.on('data', function (chunk) {
       bodyStr += chunk
  
 })
  req.on('end', function () {
   const body = querystring.parse(bodyStr);
   // 设置响应头部信息及编码
   res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'});
    if(body.name && body.age) {
      res.write("姓名:" + body.name);
      res.write("<br>");
      res.write("年龄:" + body.age);
   }
   
    res.end()
 });
})
server.listen('3030',function(){
  console.log('服务器正在监听3030端口')
})

Node.js GET/POST请求(二)

1、获取Get请求内容

javascript 复制代码
//浏览器访问地址
http://localhost:3030/?name=%27baizhan%27&&age=10
javascript 复制代码
const http = require('http')
const url = require('url')
const server = http.createServer(function (req, res) {
  res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
  //使用url.parse将路径里的参数解析出来
  const { query = {} } = url.parse(req.url, true)
  for ([key, value] of Object.entries(query)) {
    res.write(key + ':' + value)
 }
  res.end();
})
server.listen('3030', function () {
  console.log('服务器正在监听3030端口')
})

Node.js 路由

我们要为路由提供请求的URL和其他需要的GET及POST参数,随后路由需要根据这些数据来执行相应的代码。

javascript 复制代码
const http = require('http')
const url = require('url')
const server = http.createServer(function (req, res) {
  //获取请求路径
  const pathname = url.parse(req.url).pathname;
  if (pathname == '/') {
    res.end('hello')
 }else if (pathname == '/getList') {
    res.writeHead(200, { 'Content-Type': 'application/json; charset=utf-8' });
    res.write(JSON.stringify({ recrods: [{ name: 'fyx' }] }))
    res.end()
 }else{
    res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
    res.end('默认值')
 }
})
server.listen('3030', function () {
  console.log('服务器正在监听3030端口')
})

整理

javascript 复制代码
//router.js
module.exports=(pathname,res)=>{
  if (pathname == '/') {
    res.end('hello')
 }else if (pathname == '/getList') {
    res.writeHead(200, { 'Content-Type': 'application/json; charset=utf-8' });
    res.write(JSON.stringify({ recrods: [{ name: 'fyx' }] }))
    res.end()
 }else{
    res.end('默认值')
 }
}
javascript 复制代码
//test.js
const http = require('http')
const url = require('url')
const router = require('./router')
const server = http.createServer(function (req, res) {
  const pathname = url.parse(req.url).pathname;
  router(pathname,res)
})
server.listen('3030', function () {
  console.log('服务器正在监听3030端口')
})

Node.js 创建客户端

javascript 复制代码
//client.js
var http = require('http');
// 用于请求的选项
var options = {
     host: 'localhost',
     port: '3030',
     path: '/' 
};
// 处理响应的回调函数
var callback = function(response){
 // 不断更新数据
 var body = '';
 response.on('data', function(data) {
   body += data;
 });
 response.on('end', function() {
   // 数据接收完成
   console.log(body);
 });
}
// 向服务端发送请求
var req = http.request(options, callback);
req.end();
javascript 复制代码
//server.js
const http=require('http')
const url=require('url')
const server = http.createServer(function (req, res) {
  const {pathname}=url.parse(req.url)
  if (pathname == '/') {
    res.write('hello')
 res.write('xiaotong')
 res.end()
 }
 
})
server.listen('3030', function () {
  console.log('服务器正在监听3030端口')
})

Node.js 作为中间层

javascript 复制代码
//test.js
const http = require('http')
const url = require('url')
const server = http.createServer(function (req, res) {
  const pathname = url.parse(req.url).pathname;
  // 用于请求的选项
  var options = {
    host: 'localhost',
    port: '8080',
    path: pathname,
    method:req.method,
    headers:{token:'xxxxx'}
 };
  // 处理响应的回调函数
  var callback = function (response) {
    const {headers= {},statusCode}=response
    res.writeHead(statusCode, {...headers})
    response.pipe(res)
 }
  // 向服务端发送请求
  var req = http.request(options, callback);
  req.end();
})
server.listen('3030', function () {
  console.log('服务器正在监听3030端口')
})
javascript 复制代码
//server.js
const http=require('http')
const server=http.createServer((req,res)=>{
  const {headers={}}=req
  res.writeHead(200,{'Content-Type': 'application/json; charset=utf-8'})
  if(headers.token){
      res.end(JSON.stringify({code:0,message:'成功',data:[]}))
 }else{
     res.end(JSON.stringify({code:-1,message:'您还没有权限'}))
 }
})
server.listen('8080',function(){
  console.log('服务器正在监听8080端口')
}) 

Node.js 文件系统模块(一)

fs 模块提供了许多非常实用的函数来访问文件系统并与文件系统进行交互。

文件系统(fs 模块)模块中的方法均有异步和同步版本,例如读取文件内容的函数有异步的 fs.readFile() 和同步的 fs.readFileSync() 。

javascript 复制代码
var fs = require("fs");
// 异步读取
fs.readFile('input.txt', function (err, data) {
 if (err) {
   return console.error(err);
 }
 console.log("异步读取: " + data.toString());
});
// 同步读取
var data = fs.readFileSync('input.txt');
console.log("同步读取: " + data.toString());
console.log("程序执行完毕。");
相关推荐
用户0328472220702 小时前
如何搭建本地yum源(上)
运维
大树883 天前
金刚石散热越强,管路越先见顶
大数据·运维·服务器·人工智能·ai
摇滚侠3 天前
Linux CentOS7 rpm 安装 MySQL 5.7
linux·运维·mysql
霸道流氓气质3 天前
领域驱动设计(DDD)在 Spring Boot 微服务中的实践指南
运维·spring boot·微服务
小宇宙Zz3 天前
Maven依赖冲突
java·服务器·maven
Inhand陈工3 天前
基于台达PLC与映翰通IG502的智慧水产养殖精准投喂与远程运维解决方案
运维·人工智能·物联网·阿里云·信息与通信
酣大智3 天前
ARP代理--工作原理
运维·网络·arp·arp代理
shushangyun_3 天前
2026年快消品B2B系统推荐:支持终端门店订货、促销政策自动化的工具?
java·运维·网络·数据库·人工智能·spring·自动化
古城小栈3 天前
Unix 与 Linux 异同小叙
linux·服务器·unix
施努卡机器视觉3 天前
SNK施努卡侧滑门锁上滑轮总成自动化装配线,从零件到组件,全流程精密制造方案
运维·自动化·制造