标签: javascript header xmlhttprequest
是否可以使用XHR来获取文件的标题而不下载文件本身?
答案 0 :(得分:3)
您可以使用http HEAD方法代替GET方法。
xhr.open("HEAD", url, async)