AngularJS - 响应中获取标头

时间:2016-07-04 19:13:35

标签: javascript angularjs xml https

我正在向https服务发出getName()请求,该服务有一个XML文件,需要$http.get知道它的大小。

这是我的代码:

headers('Content-length')

请求的结果是:$http({ method : "GET", url : "https://url.com/xml_file.xml" }).then( function sCallback(data, status, headers, config, statusText) { console.log( headers('Content-Length') ); }, function eCallback(data, status, headers, config, statusText) { $log.warn(data, status, headers, config, statusText); }); 。 还有其他方法可以获得吗?

1 个答案:

答案 0 :(得分:-1)



 console.log( data.headers('Content-Length'));
 console.log( data.headers('Content-type'));