如何解决'重定向已被 CORS 策略阻止:没有'Access-Control-Allow-Origin”标头”?
P粉420958692
2023-08-23 13:18:14
<p>我正在使用 <code>Vue js</code> 开发一个应用程序。
根据我的设置,我需要在设置更改时将变量传递给我的 URL。</p>
<pre class="lang-js prettyprint-override"><code><!-- language: lang-js -->
$.get('http://172.16.1.157:8002/firstcolumn/' + c1v + '/' + c1b, function (data) {
// some code...
});
</code></pre>
<p>但是当我的应用程序点击 URL 时,它会显示以下消息。</p>
<pre class="brush:php;toolbar:false;">Failed to load http://172.16.1.157:8002/firstcolumn/2017-03-01/2017-10-26: Redirect from 'http://172.16.1.157:8002/firstcolumn/2017-03-01/2017-10-26' to 'http://172.16.1.157:8002/firstcolumn/2017-03-01/2017-10-26/' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access.</pre>
<p><br /></p>
谢谢大家,我通过 Chrome 上的这个扩展解决了。
允许 CORS:Access-Control-Allow-Origin一个>
除了 awd 提到的让负责服务器的人员重新配置(本地开发的不切实际的解决方案)之外,我还使用了这样的更改源 chrome 插件:
Moesif Orign 和 CORS 转换器(以前是免费的,但现在想要一个工作电子邮件地址>_>)您可以使您的
本地开发服务器(例如:localhost:8080)
看起来来自172.16.1.157:8002或任何其他域
。