被 CORS 策略阻止:否 'Access-Control-Allow-Origin'。后端设置了相关的header还是一样的

Blocked by CORS policy: No 'Access-Control-Allow-Origin'. The backend has set the relevant header or the same

只在上传较大文件时出现,连接到局域网中的文件服务器(不是本地主机)时没有问题。

要求:

此请求出错:

没错,区别只是文件大小。

回复:

Access-Control-Allow-Method = [POST]
Access-Control-Allow-Headers = [x-requested-with]
Access-Control-Allow-Credentials = [true]
Access-Control-Allow-Origin = [http://localhost:3000]

nginx默认限制大小在1M以内。 添加此配置:

client_max_body_size xM