我正在向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);
});
。
还有其他方法可以获得吗?
答案 0 :(得分:-1)
console.log( data.headers('Content-Length'));
console.log( data.headers('Content-type'));