首页 > web前端 > js教程 > 为什么我的 PHP 脚本中未定义 AngularJS POST 变量?

为什么我的 PHP 脚本中未定义 AngularJS POST 变量?

Susan Sarandon
发布: 2024-11-30 12:43:11
原创
128 人浏览过

Why Are My AngularJS POST Variables Undefined in My PHP Script?

从 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板