$ _POST返回空值

时间:2018-12-29 07:09:08

标签: php mysql

我发布的所有数据都为空

下面是我的脚本

<?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_id都返回null

这是我要发送的内容

enter image description here

1 个答案:

答案 0 :(得分:2)

在请求标头中将Content-Type添加为application / x-www-form-urlencode可以解决我猜到的问题。