我正在尝试访问API,并在图形中显示数据。我遵循了有关使用Fetch的教程;例如以下示例:(https://appdividend.com/2018/08/20/javascript-fetch-api-example-tutorial/)fetch('https://api.github.com/users/KrunalLathiya').then(res => res.json()).then(json => console.log(json));这很可爱,它获取数据并将其记录到控制台中。但是据我所知,数据无法从外部获得,如何使显示在内部的数据console.log(json)进入状态,然后再将其显示在图形中?
添加回答
举报
0/150
提交
取消