试图将我的回复转换为 json。我不太确定我收到了TypeError: response.json is not a function
错误。有人可以指出我正确的方向。提前致谢。
componentDidMount(){
this.timingFunction = setInterval(() => this.getAllStations(), 1000);
}
async getAllStations(){
try{
const response = await(`http:api.bart.gov/api/etd.aspx?cmd=etd&orig=${this.state.selectedStation}&key=${bartKey}&json=y`);
const data = await response.json();
console.log(`Here: ${data}`)
}catch(e){
console.log(`Error: ${e}`)
}
}
我希望看到 json 响应,但收到错误消息。编辑:在 response.json() 前面添加了 await;却无处可去。