以下请求为何起作用:
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));
}});