gpt4 book ai didi

javascript - AngularJS - 获取标题作为响应

转载 作者:行者123 更新时间:2023-11-30 06:52:02 25 4
gpt4 key购买 nike

我正在向具有 XML 文件的 https 服务发出 $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);

});

请求的结果是:“headers is not a function”。有没有其他方法可以获取?

最佳答案

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

关于javascript - AngularJS - 获取标题作为响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38190998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com