axios.get('url') .then(response => { console.log(response.data) }) .catch(error => { console.log(error) })
以上方法可帮助你解决 Axios 响应中没有显示数据的问题。如果问题仍然存在,请尝试在 Axios 配置中添加 responseType: 'json' 来显式地声明响应的数据类型。
responseType: 'json'
上一篇:axios响应中的“Dataundefined”
下一篇:Axios显示“未提供身份验证凭据”错误