5

私はそのような工場を作成します:

angular.module('todoApp', ['ngResource']).factory('taskService', ['constantsService', function($resource, constantsService){
var serverUrl = constantsService.server_url;
return {
    add: function(task){ $resource(serverUrl + '/api/task/', {task: task}, {'query':  {method:'POST'}});}
}
}]);

モジュールに ngResource を追加すると、アプリケーションではなく空白の html 要素が表示されます。

4

1 に答える 1

0

工場ではなく、モジュールを作成するときに ngResource をモジュールに追加すると、機能します。

于 2013-04-08T12:40:32.380 に答える