我对 Aurelia 中的 fetch (http) 客户端有一个简单的要求:使用方法“head”向 url 发出 http 请求,以确定资源是否存在(但不下载)。
拨打电话很容易:
this.http.fetch('http://the.url/something.jpg', { method: 'head', mode: 'no-cors' })
.then(response => { this.urlIsValid = response.status === 200; })
.catch(error => { ... Handle error });
但是,获取客户端似乎从未进入 .then() 方法,它总是被 .catch() 捕获。
- 如果 url 存在,或者服务器报告了一些其他错误(404、405、500 等),则错误对象是“空白”响应(即具有您期望的属性,但所有值都是空的)。
- 如果 url 无效,则错误对象包含消息“无法获取”。
我确定我错过了一些东西,但不清楚是什么。任何人都可以提供解决方案吗?
这是使用 Aurelia 1.0.0 Beta。
更新:根据请求,作为空白的请求之一的标头(由 Chrome 捕获)。
网址存在:
Request URL:https://xxx/the/url.pdf
Request Method:HEAD
Status Code:200 OK
Remote Address:xx.xx.xx.xx:443
Accept-Ranges:bytes
Connection:keep-alive
Content-Length:278188
Content-Type:application/pdf
Date:Mon, 08 Feb 2016 00:12:21 GMT
ETag:"955492e4afe7b2199e15cfafd747df27"
Last-Modified:Sun, 13 Dec 2015 01:20:37 GMT
Server:AmazonS3
Via:1.1 xxxxxxx.cloudfront.net (CloudFront)
X-Amz-Cf-Id:g7dK2pGwdnrKAZnkKOvjm0LUyb78dVdiZLB26x-mGbzI8bc9oUa75Q==
X-Cache:Miss from cloudfront
403:
Request URL:https://xxx/invalid/file.pdf
Request Method:HEAD
Status Code:403 Forbidden
Remote Address:xx.xx.xx.xx:443
Connection:keep-alive
Content-Type:application/xml
Date:Mon, 08 Feb 2016 00:16:12 GMT
Server:AmazonS3
Via:1.1 xxxxxx.cloudfront.net (CloudFront)
X-Amz-Cf-Id:q1id8NggywGeBF8PrQuU5L5a--EKGLM7x2glBke-rvV45lXV7Ch2Vg==
X-Cache:Error from cloudfront