次のヘッダーでCORSが有効になっている1つのドメインでホストされているAPIがあります。
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: POST, GET, OPTIONS
Access-Control-Max-Age: 1728000
hackst.comからGETまたはPOSTリクエストを行うことができ、正常に機能します。リンク: http: //hackst.com/#w3SbV
別のドメインでホストされているバックボーンアプリから、GETリクエストは正常に機能します。しかし、新しいモデルを作成して保存しようとすると(つまり、POSTリクエストを作成しようとすると)、次のエラーで失敗します。
Failed to load resource: the server responded with a status of 501 (Not Implemented) http://projectwhatup.us:5000/api/posts
XMLHttpRequest cannot load http://projectwhatup.us:5000/api/posts. Origin http://ayush.projectwhatup.us is not allowed by Access-Control-Allow-Origin.
私の関連するバックボーンコード:
var newPostData = {
topic : "New Post",
body : "new body",
user_id : 1,
};
var newPostModel = new Post(newPostData);
this.model.create(newPostModel);
create
メソッドをオーバーライドして、次のように手動でPOSTリクエストを作成してみました。
create : function(data) {
console.log('overriden create');
$.ajax({
"url" : this.url,
"async" : true,
"beforeSend" : function(obj){
console.log(obj);
},
"contentType" : 'application/json',
//"crossDomain" : true, // uncommenting this doesnt help either
"headers" : {
},
"dataType" : 'json',
"type" : 'POST',
"data" : JSON.stringify(data),
"error" : function(err){
console.log('new post creation failed');
console.log(err);
},
"success" : function(resp){
console.log('new post created');
console.log(resp);
}
});
}
同じエラー。
JSFiddle(http://jsfiddle.net/X9cqh/5/)でもスタンドアロンのGETリクエストを試しましたが、バックボーンアプリでGETリクエストを正常に実行できても、失敗します。
私はこの時点で完全に無知です。ヒント、ポインタ、解決策はありますか?