相同的url会返回不同的图像(随机),我需要获取响应的标题(每次也会不同),所以我不能获取两次。
我尝试使用blob
,但收到一条警告说'blob' is undefined
,代码如下:
let response = await fetch(URLs.host + URLs.imageCode);
let key = response.headers.get('key');
console.log(response.blob); // this will print 'undefined'
let blob = await response.blob();
this.setState({source: URL.createObjectURL(blob)});
...
<Image source={{uri: this.state.source}} />
那么如何在加载图像时获取标题?