$\u post返回null

iyr7buue  于 2021-06-17  发布在  Mysql
关注(0)|答案(1)|浏览(366)

我发布的所有数据都为空
下面是我的剧本

<?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
这是我要寄的

7eumitmz

7eumitmz1#

在请求头中添加内容类型application/x-www-form-urlencoded应该可以解决这个问题。

相关问题