dtb81443 2014-03-31 18:41
浏览 24
已采纳

AngularJS - 如何使用$ http.post将数据发送到php页面?

I can't understand why the data object seems doesn't exist at php server side page.

Angular

$http.post("serverside.php", {"data1":"okpass"}).success(function(data, status, header, config){
                console.log(data);// 
                console.log(status);//202 
                console.log(header);//function (c){a||(a=nc(b));return c?a[O(c)]||null:a}
    });

PHP

if( isset($_POST["data1"]) && $_POST["data1"] == "okpass" ){
    echo "It works!";
    exit(0);
}
  • 写回答

2条回答 默认 最新

  • dsnrixf6765 2014-03-31 18:55
    关注

    Angulars http.post does not send form data, so you cant rely on phps $_POST. It sends json data. You can get the data like so:

    $request = json_decode(file_get_contents("php://input"), true);
    if( isset($request["data1"]) && $request["data1"] == "okpass" ){
        echo "It works!";
        exit(0);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 matlab appdesigner私有函数嵌套整合
  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题