我正在运行Rails
服务器并正在使用jQuery
进行ajax调用。这是我的ajax
电话:
jQuery.ajax({
url: 'https://local.diabeticconnect:3001/posts',
type: 'GET',
crossDomain: true,
headers: { 'Access-Control-Allow-Origin': '*' },
}, function(res) {
console.log(res);
});
当我查看Chrome开发工具中的headers
时,Access-Control-Allow-Origin
已被完全删除。什么是jQuery
没有设置这些headers
?
答案 0 :(得分:1)
您不必自己设置此标头,这基本上将在允许来自所有来源的请求时从服务器设置。