0

基本上我有一个场景,我正在访问的 API 在许多情况下使用 :groupId 作为 url 的一部分。有没有一种简单的方法可以避免在每个函数调用中传递 $routeParams.groupId ?

var app = angular.module('plunker', []);

app.config(["$routeProvider", function($routeProvider) {
  $routeProvider.
    when("/:groupId/location", {templateUrl: "partials/location.html", controller: "LocationCtrl"});
}]);

/* Controllers */
app.controller('LocationCtrl', function($scope, $routeParams, Location) {
  Location.groupId = $routeParams.groupId; /* Is this even possible? I want to have it available to Location instead of the below*/
  Location.query();

  Location.query({groupId: $routeParams.groupId});
});

/* Services */
app.service("Location", function($resource, $routeParams) {
  return $resource("/api/:groupId/location", {}, {
    query: {method: "GET", isArray: true}
  });
});
4

2 回答 2

2

我认为你可以这样做:

 app.service("Location", function($resource, $routeParams) {
    return $resource("/api/:groupId/location", {groupId:12345}, {
         query: {method: "GET", isArray: true}
    });
 });

我还没有测试过,但我相信这就是文档的阅读方式

于 2012-08-20T19:25:17.400 回答
0

如果有任何帮助,由于上述答案对我不起作用,我将其附加.query到通话末尾。

app.service("Location", function($resource, $routeParams) {
    return $resource("/api/:groupId/location", {groupId:'@groupId'})
                                                  .query({ groupId: 12345 });
 });
于 2014-11-18T12:47:44.807 回答