代理
代理服务器英文全称是Proxy Server,其功能就是代理网络用户去取得网络信息。形象的说:它是网络信息的中转站。可以简单粗暴理解为把你的域名转换成你访问的域名,(我这么记的,当然可能并不恰当)形成同源,就能访问。
1开发环境与生产环境代理有什么区别
2 设置代理的链接
http://www.jianshu.com/p/95b2caf7e0da
http://www.jianshu.com/p/faa8303f8763
proxyTable: {
'/proxy': {
target: 'http://192.168.0.106:8686',
changeOrigin: true,
pathRewrite: {
'^/proxy': '/v1/models' //将localhost映射成http://192.168.0.106:8686
}
}
}
设置代理之后还需要 后台还需要设置一个请求头 否则还会报跨域错误 为什么
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin '
http://172.16.1.236:7070
' is therefore not allowed access. The response had HTTP status code 403.
const BASE_URL = process.env.NODE_ENV === 'production' ? SERVER_URL : 'http://192.168.0.106:8686/'
为什么不写成 /v1/models