PHP:Ajax Post URL无法打到php文件

时间:2018-09-30 11:54:49

标签: php jquery ajax web-services

我正在开发php应用程序以创建用户信息。我正在使用jquery ajax调用来命中php服务器,但未发生命中。以下是我的代码,

 $.ajax({
  url: "create.php",
  type: "POST",
  dataType: "json",
  contentType: "application/json",
  data: datastring,
  cache: false,
  success: function (response) {
  alert( JSON.stringify(response) );
  },
  error: function(jqXHR, textStatus, errorThrown) {
  alert(errorThrown);
  }
  });

我的php文件是

try {
$data = json_decode(file_get_contents('php://input'), true);

$name = $data["name"];
$email = $data['email'];
$mobile = $data['mobile'];

$stmt = $connection->prepare("query");
$stmt->execute();
$stmt->close();

} catch (Exception $e) {
$msg = array("status" =>0 , "msg" => $e->errorMessage());
}    

请有人指导我解决这个问题。

enter image description here

0 个答案:

没有答案