我更改了要使用的服务(模型),现在给出了这个奇怪的错误,我进行了搜索,发现这是语法错误,该值不会返回,但是我认为问题不在于此。

错误是:

Provider 'EventModel' must return a value from $get factory method.


那就是我的代码:

'use strict';
var EventModel = function($http) {
 this.url       = 'http://localhost:3000/api/events';
 this.$http = $http;
};

EventModel.prototype = {
    find: function() {
        return this.$http.get(this.url).then(this.extract);
    },

    extract: function(result) {
        return result.data;
    }
};

angular
  .module('siteApp')
  .factory('EventModel', [
    '$http',
    EventModel
  ]);


可能是什么?

谢谢。

最佳答案

使用您定义的方式,您需要使用的是service配方,而不是factory



angular
  .module('siteApp')
  .service('EventModel', ['$http', EventModel]);


如果您使用工厂配方进行注册,则构造函数需要返回该实例,在您的情况下,您将不返回任何内容,并且工厂配方不会发生new升级。取而代之的是,您拥有一个适当的构造函数,并且在实现时通常会寻找使用new运算符调用它的方法,而这正是service配方的作用。

09-29 23:26