访问 localhost.charlesproxy.com:端口号 产生跨域访问的问题
来源:4-10 使用Charles实现本地数据mock
王圆圆s
2019-04-17
- 视频方式,404,应该是版本问题。
- 则使用https://segmentfault.com/a/1190000018765258解决。
axios.get(‘http://localhost.charlesproxy…:3000’)
错误:xhr.js:173 GET http://localhost.charlesproxy…:3000/ 503 (Error) - 访问 localhost.charlesproxy.com:端口号 。 axios.get(‘http://localhost.charlesproxy.com:3000’)
.then(()=>{alert(‘成果’)})
.catch(()=>{alert(‘错误’)})
产生新错误:Access to XMLHttpRequest at ‘http://localhost.charlesproxy.com:3000/’ from origin ‘http://localhost:3000’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
写回答
1回答
-
Dell
2019-04-17
你不要用localhost:3000,换成127.0.0.1:3000然后直接代理
022019-04-18
相似问题