我已经尝试了 Stack Overflow 的一些解决方案,但仍然无法解决这个问题。需要其他解决方案。
componentDidMount(){
this.getCar()
}
async getCar() {
try {
const response = await axios.get('http://127.0.0.1:8000/topratedcars');
console.log(response);
} catch (error) {
console.error(error);
}
}