我使用AngularUI路由器(0.2.13)并且具有定义为此类的状态
.state('foo', {
template:'<div some-directive></div>',
resolve:{
foo:function(SomeService){
return SomeService.something().promise;
}
})
和这样的指令:
app.directive('someDirective', function(){
return {
controller: function(data) {
// I want `data` to be injected from the resolve...
// as it would if this was a "standalone" controller
}
}
})
但这不起作用 - data
参数导致UnknownProvider错误。独立定义指令控制器并在指令中按名称设置它具有相同的结果。
我或多或少知道为什么会这样,但有两个问题:
答案 0 :(得分:23)
你不能在指令中使用resolve,但是你可以将状态下解析的结果传递给我认为可以完成你正在寻找的指令。
您需要更新状态定义以包含控制器并在指令上设置参数:
.state('foo', {
template:'Test<div some-directive something="foo"></div>',
url: 'foo',
resolve:{
foo:function(SomeService){
return SomeService.something();
}
},
controller: function($scope, foo){
$scope.foo = foo;
}
})
然后更新指令以使用此参数:
.directive('someDirective', function(){
return {
controller: function($scope) {
// I want `data` to be injected from the resolve...
// as it would if this was a "standalone" controller
console.log('$scope.something: '+ $scope.something);
},
scope: {
something: '='
}
};
})
这是一个样本plunker:http://plnkr.co/edit/TOPMLUXc7GhXTeYL0IFj?p=preview
答案 1 :(得分:2)
他们简化了api。见这个主题:
https://github.com/angular-ui/ui-router/issues/2664#issuecomment-204593098
在0.2.19中我们将$ resolve添加到$ scope,允许你做&#34;路由到组件模板&#34;式
模板:
<my-directive input="$resolve.simpleObj"></my-directive>
,