鉴于此Ext.Ajax
电话:
Ext.Ajax.request({
url: url,
method: 'POST',
jsonData: dataToPost,
success: function (response) {
console.log(response.getAllResponseHeaders());
console.log(response.getResponseHeader('Location'));
console.log(response.getResponseHeader('location'));
});
}
我希望在日志中看到Location:标题。相反,我得到了这个(我添加了小写位置以防万一,看到内容类型是小写的):
在Fiddler中看到的相同请求显示的标题多于Content-type:
我做错了什么?