我如何从 - resLogin.data 获取数组数据?
then(function (resLogin){
$scope.response = resLogin.data;
console.log("From app.JS \n");
console.log($scope.response); // true from table status
答案 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
等来检索。