我对 React 和 JS 非常陌生。所以我正在使用 React 和 Nodejs 开发简单的用户管理应用程序。我使用 axios.post 添加用户。因为我需要从后端获得响应,所以我使用了 then() 函数,但代码没有到达 then 函数。我这样做是正确的还是有其他方法可以接近?
export const addUser = (data) => {
return (dispatch) => {
dispatch(AssignUser(data));
dispatch(showForm());
return axios.post('http://localhost:4000/admin/add', data)
.then((res) => {
console.log('Inside then')
})
.catch(error => {
throw(error);
});
}
};
调度用于 redux 功能。我尝试删除函数的返回语句并使用 async,await 以及。console.log 不打印。如果您能提供帮助,请提前致谢。