如何处理谷歌街景api响应

时间:2017-01-08 23:55:41

标签: javascript react-native google-api

我想要从谷歌街景中显示图片。我正在进行取消调用并获得响应,但我不知道如何处理图像?我需要使用像FileReader这样的东西吗?我正在使用react-native所以不确定我可以使用什么。这是截图。

scrrenshot

1 个答案:

答案 0 :(得分:1)

使用Fetch API时,您需要根据返回的类型正确读取响应。

图像可能是blob,因此您需要使用blob() method

您的代码应该是这样的:

fetch(myRequest)
.then(function(response) {
  return response.blob();
})
.then(function(image) {
// You get the image
});