搜索

首页  >  问答  >  正文

如何解决“重定向已被 CORS 策略阻止:没有“Access-Control-Allow-Origin”标头”?

<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>
P粉420958692P粉420958692489 天前598

全部回复(2)我来回复

  • P粉239089443

    P粉2390894432023-08-24 09:25:36

    谢谢大家,我通过 Chrome 上的这个扩展解决了。

    允许 CORS:Access-Control-Allow-Origin

    回复
    0
  • P粉748218846

    P粉7482188462023-08-24 09:19:17

    除了 awd 提到的让负责服务器的人员重新配置(本地开发的不切实际的解决方案)之外,我还使用了这样的更改源 chrome 插件:

    1. Moesif Orign 和 CORS 转换器(以前是免费的,但现在想要一个工作电子邮件地址>_>)
    2. 允许 CORS:Access-Control-Allow-Origin< /a>(2023 年测试)

    您可以使您的本地开发服务器(例如:localhost:8080)看起来来自172.16.1.157:8002或任何其他域

    回复
    0
  • 取消回复