如何使用fetch重写此方法



在我的react应用程序中,我使用axios来请求服务器。

// This method will get the data from the database.
componentDidMount() {
axios
.get("http://localhost:3000/record")
.then((response) => {
this.setState({ records: response.data });
})
.catch(function (error) {
console.log(error);
});
}

如何使用fetch重写此方法?

fetch('http://localhost:3000/record')
.then(response => {
this.setState({ records: response.data });
})
.catch(function (error) {
console.log(error);
});;

如果您想使用其他请求方法,请选中此链接。

相关内容

  • 没有找到相关文章

最新更新