React Native:如何将CSV转换为可读的JSON

时间:2017-12-10 14:44:42

标签: json react-native

我目前正在使用此代码获取JSON数据,因此我可以使用它来映射地震:

getEarthquakes(){
  return fetch('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.csv')
  .then((response) => response.json())
  .then((responseJson) =>{
      console.log(responseJson);
  })
  .catch((error) => {
      console.log(error);
  });
}

我使用.CSV链接,因为.GEOJSON无效。 它只是给了我ERROR: object object个错误。我尝试过查找信息,但我找不到任何可以帮助我的信息。

1 个答案:

答案 0 :(得分:0)

重新启动我的模拟器后,.geojson填满了我的控制台..