我试图在 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 检查器中!!!
我错过了什么?谢谢