我收到以下错误: TypeError:MyTheme.register不是函数
因为我试图从我的控制器文件夹中调用此函数。我试过了:
vm.register = function() {
MyTheme.register(this.user);
};
我也试过这个:
vm.register = function() {
MyTheme.prototype.register(this.user);
};
我的两次尝试都没有成功。
该功能位于我的包中,位于services / myTheme.js:
'use strict';
angular.module('mean.myTheme').factory('MyTheme', [
function() {
MeanUserKlass.prototype.register = function(user) {
$http.post('/api/register', {
email: user.email,
password: user.password,
confirmPassword: user.confirmPassword,
username: user.username,
name: user.name
})
.success(this.onIdentity.bind(this))
.error(this.onIdFail.bind(this));
};
return {
name: 'myTheme'
};
}
]);
答案 0 :(得分:3)
你需要这个:
var module = angular.module('MyModule');
module.factory('MyFactory', function () {
return { // all of this will be available, when you inject MyFactory
someFoo: function () {}
}
});
module.controller('MyCtrl', ['MyFactory', function (MyFactory) {
MyFactory.someFoo(); // available now
}])
答案 1 :(得分:0)
您需要在返回对象中公开该函数,或者只需返回您的MeanUserKlass对象。这篇文章涉及工厂和原型:http://blog.revolunet.com/blog/2014/02/14/angularjs-services-inheritance/