我在ember js中有设计适配器,它向后端发送请求以获取数据但是收到错误
在控制台中"XMLHttpRequest cannot load https://example.com/api. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:4200' is therefore not allowed access."
。
如果我在服务器上的nginx配置文件中使用以下代码,我可以解决问题。后端是使用django设计的。
if ($request_method = 'GET') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
但我不想打扰你的nginx配置。
适配器
import DS from 'ember-data';
export default DS.RESTAdapter.extend({
host:"https://example.com/api/",
});
如何发送请求以使其不显示任何错误
答案 0 :(得分:1)
不幸的是,您必须编辑服务器的配置文件。否则,您必须从与后端相同的域和端口提供应用程序。
答案 1 :(得分:1)
使用settings.py中的django-cors-headers进行配置:
CORS_ORIGIN_ALLOW_ALL = True
CORS_ALLOW_HEADERS = (
'x-requested-with',
'content-type',
'accept',
'origin',
'authorization',
'x-csrftoken',
'cache-control',
'accept-encoding',
)