Cors Rules
CORS 跨域规则 建议点击 查看原文 查看最新内容。 原文链接: https://typonotes.com/posts/2024/03/19/cors-rules/ 1. 因为 axios 封装遇到的跨域问题 本地服务器: http://127.0.0.1:5173, 后端服务器 http://127.0.0.1:8888。 服务器程序为 json-server。 进行如下封装后, 出现跨域问题, 尝试搜索 json-server 允许跨域配置, 始终无果。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17……