我正在尝试在React中制作一个登录验证表单,并且正在使用axios进行数据库调用。
问题是,我与服务器联系-我收到200响应,但我发布的数据不存在。
这是我第一次做:
const user = {username: this.state.username, password: this.state.password}
axios.post("http://localhost:80/thinksmart/post_requests/login.php", user)
.then(res => console.log(res))
.catch(err => console.log(err))
然后我尝试了另一种方法-在其中设置基本网址:
const api = axios.create({baseURL: 'http://localhost:80'})
api.post("/thinksmart/post_requests/login.php", user)
.then(response => {
console.log(response)
})
.catch(error =>
console.log(error)
)
而这些都不起作用。
在PHP中,我只能这样做:
header('Content-Type: application/json');
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Methods: POST');
header('Access-Control-Allow-Headers: Content-Type');
echo json_encode($_POST);
即使发送了数据(用户数据),我也得到了一个空数组
答案 0 :(得分:2)
您可以通过两种方式解决此问题:
1- PHP代码更改:要在后端获取JSON数据,您需要执行以下代码而不是$_POST
:
$json = file_get_contents('php://input');
2- JavaScript代码更改:要使用$_POST
在后端接收数据,您需要使用FormData
发送,有关更多详细信息,请参见以下链接:
axios post requests using form-data