关于跨域这一块

Posted bree

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于跨域这一块相关的知识,希望对你有一定的参考价值。

关于跨域这一块

const proxy = require("http-proxy-middleware")


module.exports = (app) => {
    app.use("/ajax", proxy({

        target: "http://39.105.204.151:3000",/*带理地址*/

        changeOrigin: true,
        pathRewrite: {
             "^ajax": ""
        }
    }))
}
 
 
 
 
 
 
技术图片
 1 const proxy = require("http-proxy-middleware")
 2 
 3 
 4 module.exports = (app) => {
 5     app.use("/ajax", proxy({
 6         target: "http://39.105.204.151:3000",
 7         changeOrigin: true,
 8         pathRewrite: {
 9              "^ajax": ""
10         }
11     }))
12 }
View Code

 

以上是关于关于跨域这一块的主要内容,如果未能解决你的问题,请参考以下文章

关于jsonp跨域过程中 cookie中的值一直为null的原因

关于laravel框架的跨域请求/jsonp请求的理解

跨域问题

三种跨域解决方案

CORS跨域的限制与解决

使用nginx代理解决跨域问题