。axios.post的then()无法正常工作

问题描述 投票:0回答:1

我对React和JS非常陌生。因此,我正在使用React和Nodejs开发用户管理的简单应用程序。我使用axios.post添加用户。因为我需要从后端获取响应,所以我使用了then()函数,但Code无法达到该函数。我做对了还是有其他解决方法?

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不打印。在此先感谢您的帮助。

javascript reactjs post axios es6-promise
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.