在angularJS中使用工厂方法时,未定义不是函数错误

时间:2014-06-09 16:38:24

标签: javascript angularjs angularjs-service angularjs-routing

我在代码中找到TypeError: undefined is not a function的解决方案时遇到问题。 我有以下app.js:

var app =  angular.module('test', ['ngRoute', 'test.services', 'test.directives', 'test.controllers']);
app.config(function ($routeProvider, $httpProvider, $locationProvider) {

  $locationProvider.html5Mode(true);

  $routeProvider.
    when('/q/:q', {
      templateUrl: '/templates/productlist.html',
      controller: 'ProductCtrl'
    }).
    otherwise({
      redirectTo: '/q'
    });

});

然后我有一个控制器

var controllers = angular.module('test.controllers', []);
controllers.controller('ProductCtrl', ['$scope', '$routeParams', 'ProductFactory',
  function ($scope, ProductFactory, $routeParams) {

    $scope.query = $routeParams.q;
    $scope.products = ProductFactory.query({query: $scope.query});
  }]);

还有工厂

var services = angular.module('test.services', ['ngResource']);
var baseUrl = 'http://localhost\\:8080';
services.factory('ProductFactory', function ($resource) {
    return $resource(baseUrl + '/test/smart/:query', {}, {
        query: { method: 'GET', isArray: true }
    })
});

此代码导致控制器中$scope.products = ProductFactory.query({query: $scope.query});行上的TypeError加载。 此外,在调试我的代码时,我发现$routeParams.q为null或未定义。 我想要的是,在我的控制器中,$scope.products变量变成了一个包含查询结果的数组。

我做错了什么?

1 个答案:

答案 0 :(得分:10)

请尝试使用正确的函数参数

controllers.controller('ProductCtrl', ['$scope', '$routeParams', 'ProductFactory',
  function ($scope /*ProductFactory*/, $routeParams, ProductFactory) {

    $scope.query = $routeParams.q;
    $scope.products = ProductFactory.query({query: $scope.query});
  }]);