0
JSON URL : https://api.github.com/users/odetocode
此json url包含另一個json數據的url。我怎麼可以從這個網址打到另一個URL來獲得數據並將其取到HTML如何從角js的其他json網址獲取json url
var app = angular.module('ionicApp', ['ionic']);
app.controller('MainCtrl', function($scope, $ionicModal,$http) {
var url = "https://api.github.com/users/odetocode?callback=JSON_CALLBACK";
$http.jsonp(url) .
success(function(post, status, headers, config)
{ $scope.data = post;
$scope.users= post.data;
$scope.followers_url= post.data.followers_url;
}) .
error(function(data, status, headers, config) {
alert("no data found");
});
});
如何我可以從角JS這個JSON文件打另一個URL。如果我想檢查這個用戶有多少追隨者和追隨者。如何我可以做到這一點。
你爲什麼要出示 –
我不是大喊,我只是問一個問題的幫助.. –
所有封面,在印刷中,大聲呼喊 –