我是一名初学者程序员,我正在使用以下代码从IGDB API中获取数据。
axios.get('https://api-v3.igdb.com/games', {
headers: {
'user-key': 'my-key'
}
}).then(res => console.log(res)).catch(error => console.log(error))
它不是游戏,而是很多东西。我想要游戏的JSON数据。我该如何获取?请帮忙。文档为here。
答案 0 :(得分:0)
可能是在axios响应下,您需要访问data
对象,如下所示
axios.get('https://api-v3.igdb.com/games', {
headers: {
'user-key': 'my-key'
}
// use res.data
}).then(res => console.log(res.data)).catch(error => console.log(error))