我在同一台服务器上有两个独立的应用程序,其中一个 EmberJS 尝试对我的后端 API 进行跨域调用。
我设置了我的后端 API 以允许来自该特定来源的跨域请求。然而,有没有办法避免在这样的设置中使用 JSONP?$.ajax
在跨域请求被发送之前阻止它们。如果不是,CORS 的意义何在,我实现了哪个服务器端来接受来自我的 JS 前端源的请求?
编辑
AJAX 请求:
$.ajax({
url: "api.lvh.me:3000/accounts/login",
data: cred,
type: "POST",
xhrFields: {
withCredentials: true
},
success: function(response){
alert('succeeded!');
console.log(response);
alert(response);
},
failure: function(message){
alert("failed");
console.log(message);
alert(message);
}
});