使用Alphavantag的数据键

时间:2019-01-11 06:40:37

标签: reactjs stock alphavantage

  1. 数据来自Alphavantag,它是带有“怪异”键的json。

example

让我们说我想操纵数据-将每个打开和关闭值输入到数组中,如何循环键?

有没有比使用数据更舒适的方法[“时间序列(1分钟)”] [“ 2019-01-10 16:00:00”] [“ 1。打开”]?

为了获取我使用的数据:

fetch(`https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=${this.props.shares[this.props.shareIdx].symbol}&interval=5min&apikey=8QEUI4X`)
    .then(response => response.json())
    .then(data => this.props.updateTimes(data));
  1. 在componentdidmount中一次检索所有数据。有更好的实践机会吗?

0 个答案:

没有答案