0

我在使用 AngularJS 资源时遇到问题。

我有一个看起来像这样的资源:

loginModule.service('TestResource', function ($resource, $location) {
    var $scope = this;
    $scope.resource = $resource(window.location.path+'/:event', {event:'@event'});

    $scope.inputData = function(data1, data2, success){
        return $scope.resource.save({'event':'inputData'},{'data1':data1,'data2':data2},success);
    };

    return $scope;
});

是的,我尝试过使用:

//  $scope.resource = $resource($location.path()+'/:event');
//  $scope.resource = $resource(window.location.path+'/:event');
//  $scope.resource = $resource(':event');

Firebug 报告此尝试发送到的地址是以下两个之一:

http://localhost/sandbox/test/undefined/inputData
http://localhost/sandbox/test/:event?event=inputData

我想要的是一个地址:

http://localhost/sandbox/test/inputData

我究竟做错了什么?更具体地说,我应该怎么做才能使它正确?

4

1 回答 1

1

尝试$resource('./:event', ...)

于 2013-05-08T15:44:57.867 回答