Ext.ajax.request で来る応答のヘッダーを読み取ろうとしています。
ここにコードがあります:
Ext.Ajax.request({ url: 'http://localhost:3000/v0.1/login' ,
method: 'POST',
scope:this,
jsonData: {"_username":username,"_userpwd":password},
success: function(responseObject){
var headers = responseObject.getAllResponseHeaders();
console.info(headers );
Ext.destroy(Ext.ComponentQuery.query('#loginWindow'));
this.application.getController('SiteViewController').showView();
},
failure: function(responseObject){
alert(responseObject.status);
}
});
ただし、コンソールに出力される唯一のヘッダーは次のとおりです。
Object {content-type: "application/json; charset=utf-8"}
他のヘッダーはすべて欠落していますが、Chrome インスペクターには表示されています!!!
私は何が欠けていますか?ありがとう