📅  最后修改于: 2022-03-11 15:02:18.631000             🧑  作者: Mango
The error tells you that there is an error but you don´t catch it. This is how you can catch it:
getAllPosts().then(response => {
console.log(response);
}).catch(e => {
console.log(e);
});