Poczekaj, aż angular oceni zmienną
Dużo majstrowałem przy tym i nie mogłem zmusić go do pracy nawet ze zmienną zdefiniowaną "="
w zakresie. Oto trzy rozwiązania w zależności od sytuacji.
Rozwiązanie nr 1
Okazało się, że zmienna nie została jeszcze oceniona przez kątową kiedy została przekazana do dyrektywy. Oznacza to, że możesz uzyskać do niego dostęp i używać go w szablonie, ale nie wewnątrz funkcji linku lub kontrolera aplikacji, chyba że czekamy na ocenę.
Jeśli zmienna się zmienia lub jest pobierana przez żądanie, użyj $observe
lub $watch
:
app.directive('yourDirective', function () {
return {
restrict: 'A',
// NB: no isolated scope!!
link: function (scope, element, attrs) {
// observe changes in attribute - could also be scope.$watch
attrs.$observe('yourDirective', function (value) {
if (value) {
console.log(value);
// pass value to app controller
scope.variable = value;
}
});
},
// the variable is available in directive controller,
// and can be fetched as done in link function
controller: ['$scope', '$element', '$attrs',
function ($scope, $element, $attrs) {
// observe changes in attribute - could also be scope.$watch
$attrs.$observe('yourDirective', function (value) {
if (value) {
console.log(value);
// pass value to app controller
$scope.variable = value;
}
});
}
]
};
})
.controller('MyCtrl', ['$scope', function ($scope) {
// variable passed to app controller
$scope.$watch('variable', function (value) {
if (value) {
console.log(value);
}
});
}]);
A oto html (pamiętaj o nawiasach!):
<div ng-controller="MyCtrl">
<div your-directive="{{ someObject.someVariable }}"></div>
<!-- use ng-bind in stead of {{ }}, when you can to avoids FOUC -->
<div ng-bind="variable"></div>
</div>
Zauważ, że nie powinieneś ustawiać zmiennej na "="
w zakresie, jeśli używasz $observe
funkcji. Odkryłem również, że przekazuje obiekty jako łańcuchy, więc jeśli przekazujesz obiekty, użyj rozwiązania nr 2 lub scope.$watch(attrs.yourDirective, fn)
(lub nr 3, jeśli zmienna się nie zmienia).
Rozwiązanie nr 2
Jeśli twoja zmienna została utworzona np. W innym kontrolerze , ale wystarczy poczekać, aż angular ją przeanalizuje przed wysłaniem jej do kontrolera aplikacji, możemy użyć opcji $timeout
czekania aż się $apply
uruchomi. Musimy również użyć, $emit
aby wysłać go do kontrolera aplikacji zakresu nadrzędnego (ze względu na izolowany zakres w dyrektywie):
app.directive('yourDirective', ['$timeout', function ($timeout) {
return {
restrict: 'A',
// NB: isolated scope!!
scope: {
yourDirective: '='
},
link: function (scope, element, attrs) {
// wait until after $apply
$timeout(function(){
console.log(scope.yourDirective);
// use scope.$emit to pass it to controller
scope.$emit('notification', scope.yourDirective);
});
},
// the variable is available in directive controller,
// and can be fetched as done in link function
controller: [ '$scope', function ($scope) {
// wait until after $apply
$timeout(function(){
console.log($scope.yourDirective);
// use $scope.$emit to pass it to controller
$scope.$emit('notification', scope.yourDirective);
});
}]
};
}])
.controller('MyCtrl', ['$scope', function ($scope) {
// variable passed to app controller
$scope.$on('notification', function (evt, value) {
console.log(value);
$scope.variable = value;
});
}]);
A oto html (bez nawiasów!):
<div ng-controller="MyCtrl">
<div your-directive="someObject.someVariable"></div>
<!-- use ng-bind in stead of {{ }}, when you can to avoids FOUC -->
<div ng-bind="variable"></div>
</div>
Rozwiązanie nr 3
Jeśli twoja zmienna się nie zmienia i musisz ją ocenić w swojej dyrektywie, możesz użyć $eval
funkcji:
app.directive('yourDirective', function () {
return {
restrict: 'A',
// NB: no isolated scope!!
link: function (scope, element, attrs) {
// executes the expression on the current scope returning the result
// and adds it to the scope
scope.variable = scope.$eval(attrs.yourDirective);
console.log(scope.variable);
},
// the variable is available in directive controller,
// and can be fetched as done in link function
controller: ['$scope', '$element', '$attrs',
function ($scope, $element, $attrs) {
// executes the expression on the current scope returning the result
// and adds it to the scope
scope.variable = scope.$eval($attrs.yourDirective);
console.log($scope.variable);
}
]
};
})
.controller('MyCtrl', ['$scope', function ($scope) {
// variable passed to app controller
$scope.$watch('variable', function (value) {
if (value) {
console.log(value);
}
});
}]);
A oto html (pamiętaj o nawiasach!):
<div ng-controller="MyCtrl">
<div your-directive="{{ someObject.someVariable }}"></div>
<!-- use ng-bind instead of {{ }}, when you can to avoids FOUC -->
<div ng-bind="variable"></div>
</div>
Spójrz również na tę odpowiedź: https://stackoverflow.com/a/12372494/1008519
Odniesienie do wydania FOUC (flash z niestylizowaną zawartością): http://deansofer.com/posts/view/14/AngularJs-Tips-and-Tricks-UPDATED
Dla zainteresowanych: oto artykuł na temat kątowego cyklu życia