0

在指令链接函数中,我想调用工厂实例,是否可以

.directive('commentList', function(CommentsService, Global) { return { restrict: 'E', templateUrl: 'xxxx', link: function($scope, element, attrs) {

....我想从这里调用一个工厂 } }}); .factory('事实'){ }

4

1 回答 1

2

您可以像这样在顶部添加事实(工厂):

.directive('commentList', function(CommentsService, Global, fact) { return { restrict: 'E', templateUrl: 'xxxx', link: function($scope, element, attrs) {

然后通过在函数中使用 fact.callFactMethod() 之类的东西。

于 2016-10-20T05:37:12.507 回答