在前端已经添加了代理但是访问还是报错。
has been blocked by CORS policy: Request header field platform is not allowed by Access-Control-Allow-Headers in preflight response.
这个问题是说:
需要在后端把 platform 这个加入到后端中
比如我的django
将 platform 加入到 cors_Allow_headers 中 重启服务 访问就ok 了。
CORS_ALLOW_HEADERS = ( 'XMLHttpRequest', 'X_FILENAME', 'accept-encoding', 'authorization', 'content-type', 'dnt', 'origin', 'user-agent', 'x-csrftoken', 'x-requested-with', 'Pragma', 'strict-origin-when-cross-origin', 'token', 'platform' )
相关标签: