解决跨域之服务器代理http-proxy-middleware模块
Posted yingyingying
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决跨域之服务器代理http-proxy-middleware模块相关的知识,希望对你有一定的参考价值。
安装模块
yarn add http-proxy-middleware
引入模块
app.js
var proxy = require("http-proxy-middleware");
使用模块
app.js
var app = express();
// 请求的路由地址(接口文件) 进行跨域请求的协议域名
app.use(‘/ajax_www_68ecshop_com.php‘, proxy({target: ‘https://www.jkslw.cn‘, changeOrigin: true}))
前端访问接口
index.html
$.ajax({ type:"get",
//直接传入路由地址,无需加上域名 url:"/ajax_www_68ecshop_com.php?act=tipword&word=xiaomi&152790640006565", dataType:"json", success:function(data){ console.log(data); }
})
以上是关于解决跨域之服务器代理http-proxy-middleware模块的主要内容,如果未能解决你的问题,请参考以下文章