所以看起来像在这些例子中你可以做到这一点:
原文链接:https://www.f2er.com/angularjs/140589.htmlApp.controller('ProjectListCtrl',['$scope','Restangular',function($scope,Restangular) { $scope.projects = Restangular.all('project/').getList(); }]);
但这对我来说不行.当我在项目中重复项目并查看范围时,我看到:@H_301_4@
{ projects: { then: null catch: null finally: null call: null get: null restangularCollection: true push: null } }
这工作正常,但更冗长:@H_301_4@
lgtApp.controller('ProjectListCtrl',Restangular) { Restangular.all('project/').getList().then(function(projects){ $scope.projects = projects; }); }]);
我错过了什么?这是在文档中:@H_301_4@
$scope.owners = house.getList('owners')
不要紧,但是当我在Ripple chrome插件中测试一个phonegap应用程序时,会发生这种情况.@H_301_4@