我发布的所有数据都为空
下面是我的剧本
<?php
require "Constants.php";
if(mysqli_connect_errno()){
die('Unable to connect to database'.mysqli_connect_errno());
}
$ImageData = $_POST['ImageData'];
$profile_id = $_POST['profile_id'];
$ImagePath = 'eimg/'.$profile_id.'.jpg';
echo $ImagePath;
?>
在上面的代码中,$imagedata和$profile\u id都返回null
这是我要寄的
1条答案
按热度按时间7eumitmz1#
在请求头中添加内容类型application/x-www-form-urlencoded应该可以解决这个问题。