Safari 10.1: XMLHttpRequest with query parameters cannot load due to access control checks(Safari 10.1:由于访问控制检查,无法加载带有查询参数的 XMLHttpRequest)
问题描述
在 Safari 10.1
上尝试 CORS 请求
时,在包含查询参数(例如 https://example.com/api?v=1),Safari 说
When trying a CORS request
on Safari 10.1
, on an URL which includes query parameters (e.g. https://example.com/api?v=1), Safari says
XMLHttpRequest 由于访问控制检查而无法加载
XMLHttpRequest cannot load due to access control checks
Chrome/Firefox 运行良好.
Chrome/Firefox works fine.
对于来自没有 ?v=1
的页面的请求,Safari 也可以正常工作.
On requests from the page without the ?v=1
, Safari works fine too.
我尝试从
Access-Control-Allow-Origin: https://example.com
到
Access-Control-Allow-Origin: https://example.com/api?v=1
但这会破坏 Chrome.
but that breaks Chrome.
有什么建议吗?
推荐答案
如果有人遇到这个错误,它只是发生在我正在构建的应用程序中.就我而言,它原来是 uri 中的尾随/,导致 301 响应,出于某种原因,Safari 将其解释为 500 响应.
If anyone comes across this error, it just occurred in the application I was building. In my case, it turned out to be a trailing / in the uri, which caused a 301 response, which was for some reason interpreted by Safari as a 500 response.
这篇关于Safari 10.1:由于访问控制检查,无法加载带有查询参数的 XMLHttpRequest的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Safari 10.1:由于访问控制检查,无法加载带有查询参数的 XMLHttpRequest
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01