admin管理员组文章数量:1344931
I've got an AngularJS model in which I've created a module called myService to hold some monly used code which I use throughout my application. My Common factory is where I've been adding all my methods and now I want to split this up and give them good names.
A lot of my methods call each other so how can I call a method which is in another factory?
angular.module('myService', ['ngResource'])
.factory('test2', ($window) ->
return {
foobar: () ->
Common.test()
}
)
.factory('Common', ($window) ->
return {
test: () ->
alert 'testing'
}
)
I've got an AngularJS model in which I've created a module called myService to hold some monly used code which I use throughout my application. My Common factory is where I've been adding all my methods and now I want to split this up and give them good names.
A lot of my methods call each other so how can I call a method which is in another factory?
angular.module('myService', ['ngResource'])
.factory('test2', ($window) ->
return {
foobar: () ->
Common.test()
}
)
.factory('Common', ($window) ->
return {
test: () ->
alert 'testing'
}
)
Share
Improve this question
asked Apr 8, 2013 at 6:22
map7map7
5,1266 gold badges74 silver badges131 bronze badges
2 Answers
Reset to default 12You only need to inject it:
.factory('test2', function (Common) {
return {
foobar: function () {
Common.test();
}
};
})
This is what i did and worked fine. Call SessionPresenters from Session. You need to pass the SessionPresenters as an argument to factory implementation function.
angular.module('tryme3App')
.factory('Session', function ($resource, DateUtils, SessionPresenters) {
return $resource('api/sessions/:id', {}, {
'query': { method: 'GET', isArray: true},
'get': {
method: 'GET',
transformResponse: function (data) {
data = angular.fromJson(data);
var result = SessionPresenters.get({id: data.id})
data.presenters = result;
return data;
}
},
'update': { method:'PUT' }
});
}).factory('SessionPresenters', function ($resource, DateUtils) {
return $resource('api/session.Presenters/:id', {}, {
'query': { method: 'GET', isArray: true},
'get': {
method: 'GET', isArray: true
},
'update': { method:'PUT' }
});
});
本文标签: javascriptAngularjs accessing methods in another factoryStack Overflow
版权声明:本文标题:javascript - Angularjs accessing methods in another factory - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778265a2537380.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论