从ExtJS中的Ajax POST获取响应头

时间:2017-01-06 17:57:58

标签: ajax extjs http-headers

鉴于此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:标题。相反,我得到了这个(我添加了小写位置以防万一,看到内容类型是小写的):

enter image description here

在Fiddler中看到的相同请求显示的标题多于Content-type:

enter image description here

我做错了什么?

0 个答案:

没有答案