让我们说我想操纵数据-将每个打开和关闭值输入到数组中,如何循环键?
有没有比使用数据更舒适的方法[“时间序列(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));