我只是对javascript的基本反应,我在我的服务器中进行查询处理mysql并且连接很好,但返回是我遇到问题的地方,它假设返回一个JSON与查询,但我发现错误typeError _ref未定义这里是我连接到我的API的函数
callDB(){
fetch('http://localhost:4000/lista')
.then((response)=>{
response.json()
})
.then(({data})=>{
console.log(data);
})
.catch((err)=>{console.log(err);});
}
在数据部分中,它没有处理任何想法?先谢谢
答案 0 :(得分:0)
您需要在Promise处理程序中返回response.json()
:
callDB(){
fetch('http://localhost:4000/lista')
.then((response)=>{
return response.json()
})
.then(({data})=>{
console.log(data);
})
.catch((err)=>{console.log(err);});
}