为什么会出现Response to preflight request doesn't pass access control check: The value of the 'Access-Control-Allow-Credentials' header in the response is '' which must be 'true' when the request's credentials mode is 'include'. The credentials mode of requests
时间: 2023-07-09 21:39:44 浏览: 91
已解决:No 'Access-Control-Allow-Origin'跨域问题
5星 · 资源好评率100%
出现这个错误是因为在跨域请求中,浏览器会先发送一个预检请求(preflight request),以确认服务端是否支持跨域请求,这个预检请求的响应中需要包含 Access-Control-Allow-Credentials 头部,并且值为 true,表示服务端允许浏览器发送包含凭据信息的请求。如果这个头部不存在或者值不为 true,就会出现这个错误。通常可以通过设置服务端的响应头部来解决这个问题。
阅读全文