如何从离子中的http.post的响应中提取数据

时间:2016-12-13 09:43:58

标签: ionic-framework

我如何从 - resLogin.data 获取数组数据?

then(function (resLogin){
                 $scope.response = resLogin.data;    
                console.log("From app.JS \n");
                console.log($scope.response); // true from table status

enter image description here

1 个答案:

答案 0 :(得分:0)

使用以下内容创建JSON服务器端:

<?php
    $arr = array('user' => $userDB, 'mobile' => $mobileDB, 'location' => $locationDB, 'biodata' => $biodataDB, 'password' => $passwordDB);
    echo json_encode($arr);
?>

现在您的回复如下:

{
    "user": "awais",
    "mobile": "12345",
    "location": "johar",
    "biodata": "...",
    "password": "..."
}

每个字段都可以通过$scope.response.user$scope.response.mobile等来检索。