从 AngularJS 发送的 HTTP POST 会在 PHP 中产生未定义的 POST 变量
在我们的设置中,AngularJS 应用程序向 PHP 发送 HTTP POST 请求脚本,但 PHP 脚本收到“电子邮件”和“密码”POST 的未定义值
调试原因
问题在于AngularJS发送的Content-Type头与PHP期望的数据格式不匹配。 AngularJS 使用 application/json 作为默认的 Content-Type 标头,但 PHP 脚本需要表单编码的数据。
解决方案 1:在 PHP 中使用 Application/JSON
一种解决方案是将 AngularJS 中的 Content-Type 标头更改为 application/json 并使用 PHP 的 file_get_contents("php://input") 来检索原始数据请求正文。然后可以从 JSON 反序列化数据。
$postdata = file_get_contents("php://input"); $request = json_decode($postdata); $email = $request->email; $pass = $request->password;
解决方案 2:发送表单编码数据
或者,AngularJS 可以配置为发送表单编码数据。这涉及手动或使用 jQuery.serialize() 构建查询字符串。然后应该对查询字符串进行 URL 编码并设置为请求数据。
$email = $_POST['email']; $pass = $_POST['password'];
已弃用的方法
请注意 .success() 和 .error() 方法代码中提到的内容已被弃用。使用 .then() 代替。
以上是为什么我的 PHP 脚本中未定义 AngularJS POST 变量?的详细内容。更多信息请关注PHP中文网其他相关文章!