バックボーンアプリにクロスドメイン設定を実装しようとしています。
私のサーバー(express.js)はクロスドメインとクレデンシャルを許可しています:
var allowCrossDomain = function(req, res, next) {
var allowedHost = [
'http://localhost:3001',
'http://localhost:7357'
];
if(allowedHost.indexOf(req.headers.origin) !== -1) {
res.header('Access-Control-Allow-Credentials', true);
res.header('Access-Control-Allow-Origin', req.headers.origin)
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
res.header('Access-Control-Allow-Headers', 'X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version');
next();
} else {
res.send({auth: false});
}
}
app.configure(function(){
....
app.use(allowCrossDomain);
....
});
私のクライアント(backbone.js)は、クロスドメインも受け入れるように構成されています:
define(["backbone", "jquery", "underscore"], function (BB, $, _) {
return BB.Model.extend({
idAttribute: "_id",
initialize: function () {
var that = this;
$.ajaxPrefilter( function( options, originalOptions, jqXHR ) {
options.crossDomain ={
crossDomain: true
};
options.xhrFields = {
withCredentials: true
};
});
}
});
});
コードをテストすると(POST
リクエストを言うと)、非常に特殊な動作をします。
var contacts = new Contacts;
contacts.create({'name': 'my name'});
ブラウザは次のメッセージを返します。
オプション...404(見つかりません)jquery.js:8419
OPTIONS
httpメソッドはバックボーンでサポートされていないため、これは完全に混乱しますか?