axios 怎么解决跨域
时间: 2023-03-29 22:03:58 浏览: 108
vue axios 解决跨域问题CORS
Axios 可以通过设置 withCredentials 和 headers 来解决跨域问题。withCredentials 设置为 true,表示允许跨域请求携带 cookie。同时,设置 headers 的 Origin 和 Referer 字段为请求的域名,可以避免浏览器的 CORS 机制拦截请求。另外,服务器端也需要设置 Access-Control-Allow-Origin 和 Access-Control-Allow-Credentials 等响应头,以允许跨域请求。
阅读全文