我有一个react / d3项目,我正在使用axios.get
来检索传递到本地网址的数据。这是我的代码:
return axios.get("http://localhost:3000/gadata")
.then(response => {
dispatch({
type: 'FETCH_DATA_SUCCESS',
isFetching: false,
data: response.data.rows
});
})
我希望能够使用d3-request
而不是axios。我应该如何重构我的代码?