0

我对 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 不打印。如果您能提供帮助,请提前致谢。

4

1 回答 1

0

只是菜鸟问题。后端响应没有来。始终使用邮递员或任何其他工具检查您的后端。@user3791775 感谢大家的宝贵时间。

于 2020-05-19T14:27:48.200 回答