我正在编写一个Angular 1.5指令,我遇到了一个令人讨厌的问题,试图在绑定数据存在之前对其进行操作。
这是我的代码:
app.component('formSelector', {
bindings: {
forms: '='
},
controller: function(FormSvc) {
var ctrl = this
this.favorites = []
FormSvc.GetFavorites()
.then(function(results) {
ctrl.favorites = results
for (var i = 0; i < ctrl.favorites.length; i++) {
for (var j = 0; j < ctrl.forms.length; j++) {
if (ctrl.favorites[i].id == ctrl.newForms[j].id) ctrl.forms[j].favorite = true
}
}
})
}
...
正如您所看到的,我正在进行AJAX调用以获取收藏夹,然后根据我的绑定表单列表进行检查。
问题是,即使在填充绑定之前,承诺仍在实现......所以当我运行循环时,ctrl.forms仍未定义!
不使用$ scope。$ watch(这是1.5组件的吸引力的一部分)我如何等待绑定完成?
答案 0 :(得分:34)
我有类似的问题,我这样做是为了避免在我要发送的值准备就绪之前调用组件:
<form-selector ng-if="asyncValue" forms="asyncValue" ></form-selector>
答案 1 :(得分:26)
您可以使用新的生命周期挂钩,特别是$onChanges
,通过调用isFirstChange
方法来检测绑定的第一次更改。详细了解此here。
以下是一个例子:
<div ng-app="app" ng-controller="MyCtrl as $ctrl">
<my-component binding="$ctrl.binding"></my-component>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.4/angular.js"></script>
<script>
angular
.module('app', [])
.controller('MyCtrl', function($timeout) {
$timeout(() => {
this.binding = 'first value';
}, 750);
$timeout(() => {
this.binding = 'second value';
}, 1500);
})
.component('myComponent', {
bindings: {
binding: '<'
},
controller: function() {
// Use es6 destructuring to extract exactly what we need
this.$onChanges = function({binding}) {
if (angular.isDefined(binding)) {
console.log({
currentValue: binding.currentValue,
isFirstChange: binding.isFirstChange()
});
}
}
}
});
</script>
&#13;
答案 2 :(得分:8)
原来的海报说:
即使在填充绑定之前,承诺也已实现...... 在我运行循环的时候,ctrl.forms仍未定义
自AngularJS 1.5.3以来,我们有lifecycle hooks并且为了满足OP的问题,您只需要移动代码,这取决于$onInit()
内部满足的绑定:
$ onInit() - 在一个控制器上的所有控制器上调用每个控制器 已经构造了元素并初始化了它们的绑定(和 之前和之前为此指令发布链接函数 元件)。这是放置初始化代码的好地方 控制器。
所以在这个例子中:
app.component('formSelector', {
bindings: {
forms: '='
},
controller: function(FormSvc) {
var ctrl = this;
this.favorites = [];
this.$onInit = function() {
// At this point, bindings have been resolved.
FormSvc
.GetFavorites()
.then(function(results) {
ctrl.favorites = results;
for (var i = 0; i < ctrl.favorites.length; i++) {
for (var j = 0; j < ctrl.forms.length; j++) {
if (ctrl.favorites[i].id == ctrl.newForms[j].id) {
ctrl.forms[j].favorite = true;
}
}
}
});
}
}
所以是的,有一个$onChanges(changesObj)
,但是$onInit()
专门解决了我们何时能够保证绑定得到解决的原始问题。
答案 3 :(得分:1)
我有类似的问题,我发现这篇文章非常有用。 http://blog.thoughtram.io/angularjs/2016/03/29/exploring-angular-1.5-lifecycle-hooks.html
我有一个ajax调用,在页面加载时命中服务器,我的组件需要ajax返回值才能正确加载。我这样实现了它:
this.$onChanges = function (newObj) {
if (newObj.returnValFromAJAX)
this.returnValFromAJAX = newObj.returnValFromAJAX;
};
现在我的组件完美无缺。作为参考,我使用的是Angular 1.5.6