如何用nodejs搭建代理服务器
目录
- 代理服务器的原理
- 案例
- 搭建代理服务器解决跨域问题
- 原理解释
代理服务器的原理
文章图片
案例 安装 express、http-proxy-middleware
app.js 文件 node app.js
var express = require('express'); var app = express(); app.use(express.static('./public')); app.listen(3000);
在 public 文件夹下建立 a.html
Document - 锐客网 Document - 锐客网
【如何用nodejs搭建代理服务器】搭建接口服务器,接口服务器端口号 5000
node interface.js
var express = require('express'); var app = express(); app.get("/", (req, res) => {res.send("123"); }); app.get("/api/a", (req, res) => {res.send("a"); }); app.get("/b", (req, res) => {console.log(req.headers); res.send("b"); }); app.listen(5000);
访问http://localhost:3000/a.html
文章图片
搭建代理服务器解决跨域问题 更改 app.js
var express = require('express'); var proxy = require('http-proxy-middleware'); var app = express(); app.use(express.static('./public')); app.use('/api', proxy.createProxyMiddleware({target: 'http://localhost:5000',changeOrigin: false,pathRewrite: {"^/api": ""}})); app.listen(3000);
更改 a.html
Document - 锐客网 Document - 锐客网
访问 http://localhost:3000/a.html
文章图片
原理解释 将 a.html 请求地址改为 /api/b,那么发送请求的时候会自动补上主机和端口号http://localhost:3000
文章图片
文章图片
所以请求发送到了3000端口
参数含义
target
: 转发到的目标地址changeOrigin
: 是否更改host。默认为false,不重写
文章图片
false
文章图片
pathRewrite
:路径重写(在这里是去掉’api’)
文章图片
最终请求被转发到了 http://localhost:5000/b
app.get("/b", (req, res) => {console.log(req.headers); res.send("b"); });
整个过程就像这样
文章图片
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 云硬盘EVS详解以及如何用与避坑【华为云至简致远】
- 疫情下如何通过华为云会议提升工作效率【华为云至简致远】
- 如何查看所有测试历史(进来学习下)
- 云GPU如何安装和启动VNC远程桌面服务()
- markdown编辑工具Ulysses 27中文版
- 明珠之城
- mybatis|mybatis mapper.xml中如何根据数据库类型选择对应SQL语句
- 身为程序员的我们如何卷死别人(破局重生。)
- 智能电视如何安装小程序应用(附硬核技术)
- Vue|Vue SPA 如何解决浏览器缓存问题