关于跨域这一块
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 }
以上是关于关于跨域这一块的主要内容,如果未能解决你的问题,请参考以下文章