当请求的响应到达时,有什么方法可以读取响应头吗?
最佳答案
响应事件处理程序将<iron-request>
作为第二个参数传递。 <iron-request>
具有 xhr
property,即用于发出请求的XMLHttpRequest
。您应该能够从中获取响应头。
<iron-ajax on-response="ajaxResponse"></iron-ajax>
...
ajaxResponse: function(e, request) {
var headers = request.xhr.getAllResponseHeaders();
}
关于javascript - 使用Iron-ajax,如何读取响应的 header ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30795661/