我需要使用$q我的指令的
链接功能.我需要它来包装由一个参数重新调整的可能的promise(参见下面的例子).但是,我不知道如何将$q依赖项传递给此
函数.
angular.module('directives')
.directive('myDirective',function() {
return {
scope: {
onEvent: '&'
}
// ...
link: function($scope,$element) {
$scope.handleEvent() {
$q.when($scope.onEvent()) {
...
}
}
}
}
}
只需将其
添加为您的指令的依赖项,$q将在
链接函数中使用.这是因为JavaScript的
closures.
以下是基于您的代码的示例.
angular.module('directives')
.directive('myDirective',['$q',function($q) {
return {
scope: {
onEvent: '&'
}
// ...
link: function($scope,$element) {
$scope.handleEvent() {
$q.when($scope.onEvent()) {
...
}
}
}
}
}])
原文链接:https://www.f2er.com/js/155364.html