可以说我有一个从服务中填充的角度视图:
$http.get("" + window.ENDPOINT + "/main_things/" + $scope.mainThingId + ".json").success(function(data) {
return $scope.main_thing = data;
});
假设我想向我的页面加载另一位信息,但另一位正在使用一些缓慢的外部服务,所以我想异步加载它:
$http.get("" + window.ENDPOINT + "/secondary_things/" + $scope.parentMainThingId + ".json").success(function(data) {
return $scope.secondary_thing = data;
});
如何在角度控制器中构造我的代码,以便我可以先加载 main_thing 然后加载次要的东西?
任何帮助,将不胜感激。