我試圖從嵌套的JSON對象獲取URL,但是在獲取數據時遇到了問題。我不確定如何從深層嵌套的JSON對象中獲取數據。使用角度獲取嵌套的JSON對象的數據GET
app.controller('mainCtrl', function($scope, $http) {
$http.get("https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20json%20where%20url%3D'www.whitehouse.gov%2Ffacts%2Fjson%2Fall%2Fcollege%2520affordability'&format=json&diagnostics=true").then(function(responce) {
$scope.status = responce;
$scope.sortData = responce.data.query.results.json.json.url;
console.log(responce);
console.log($scope.sortData);
});
});
我可以控制檯登錄對象,但我不知道如何從深度嵌套的對象獲取URL。這裏是控制檯記錄對象的JSFiddle。謝謝您的幫助。
https://jsfiddle.net/39pwve2x/19/