React js中的POST请求

时间:2020-01-22 17:14:59

标签: reactjs http

以下请求为何起作用:

curl -d username=user@user.com -d password=user -L http://localhost:8081

但是这个(React js)不可以吗?:

axios.post('http://localhost:8081',{
            username: values.email,
            password: values.password}).then(function (response) {
            if (response.status === 200) {
                console.log(response.data);
                setRedirect(JSON.stringify(response.data));
            }});

0 个答案:

没有答案