我正在开发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());
}
请有人指导我解决这个问题。