我正在尝试从响应JSON数据中获取价值。如何获取值domain
,status
,key
。
响应JSON数据:
{"example.com":{"status":"YES","key":"example"}}
Angular JS代码
$http.post('http://exampleURL.com', postData).success(function(response){
console.log(response);
alert();
}).error(function() {
});
答案 0 :(得分:1)
使用angular.fromJson解析JSON,然后使用遍历它。
$http.post('http://exampleURL.com', postData).success(function(response){
console.log(response);
var data = angular.fromJson(response);
console.log(data['example.com'].status);
}).error(function() {
});