0
私は$resource.get
要求を使用してJSONオブジェクトを返す工場を持っているが、私は私のngresource工場からいくつかのデータを取得することはできません。ngresourceファクトリからコントローラにデータを渡す方法は?
HTML
<body ng-app="myApp" ng-controller="myCtrl" >
<table border="1">
<tr>
<th>Name</th>
<th>city</th>
</tr>
<tr ng-repeat="x in data.records">
<td style="padding: 20px">{{records.Name}}</td>
<td style="padding: 20px">{{records.City}}</td>
</tr>
</table>
</body>
JS:
angular.module('myApp',['ngResource']);
angular.module('myApp').controller("myCtrl",function (yourService,$scope) {
});
angular.module('myApp').
factory('yourService', ["$resource", function($resource,$scope){
return $resource("http://www.w3schools.com/angular/customers.php").get().$promise
.then (function (data){
});
return data;
}]);
可能な複製(http://stackoverflow.com/questions/30604693/multiple-parameters-in-angularjs-resource-get) –