热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用httpproxy做的代理服务,为什么前端页面的访问的地址必须和请求接口的地址统一

1.使用node模块http-proxy请求代理服务时,能成功代理成功,但是问题是,浏览器使用localhost:8001/index.html访问页面,页面中的数据接口地址就必须写成ht

1.使用node模块http-proxy请求代理服务时,能成功代理成功,但是问题是, 浏览器使用localhost:8001/index.html 访问页面,页面中的数据接口地址就必须写成 http://localhost:8001/CpyUser...



如果浏览器写成访问127.0.0.1:8001/index.html访问页面,页面中的数据接口地址就必须写成 http://127.0.0.1:8001/CpyUser...

有没有一种通用的方法:



服务代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// 新建一个代理 Proxy Server 对象

var proxy = httpProxy.createProxyServer({ target: 'http://192.168.1.102:8080/CpyService/bs' });



// 捕获异常

proxy.on('error', function (err, req, res) {

 res.writeHead(500, {

 'Content-Type': 'text/plain'

 });

 res.end('Something went wrong. And we are reporting a custom error message.');

});







var server = require('http').createServer(function(req, res) {

   

  var pathname = url.parse(req.url).pathname;  

 if(pathname.indexOf("CpyUser") > 0){

   console.log('代理服务', req.url, res)

  //  req.url = req.url.replace('/mspj-mall-admin', '')

  proxy.web(req, res);

  // return;

} else {

  handler (req, res) // 处理静态资源的请求

}



var host = req.url;

host = url.parse(host); host = host.host;



console.log("host:" + req.headers.host);

console.log("client ip:" + (req.headers['x-forwarded-for'] || req.connection.remoteAddress));



});



   



推荐阅读
author-avatar
天佑千行
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有