从解析中获取帐户和人员数组后,如何在组件控制器中访问人员和帐户? 我还尝试了在主 ctl 中定义帐户并将其绑定到组件,但没有运气。
我可以将人员和帐户绑定到组件并在组件模板中访问它,但我想在组件控制器中的任何一个数组上工作是我遇到问题的地方。 我错过了什么关键概念????
主控制器
angular.module('hellosolarsystem')
.controller('AcctCtrl', function($scope, accounts, people){
$scope.accounts = accounts;
$scope.people = people;
});
主模板
<nav-bar></nav-bar>
<acct-list people="people" accounts="accounts"></acct-list>
元件
function aCtrl(){
var ctrl = this;
ctrl.acctTally = [];
ctrl.uniqueAcct = [];
//Array of all accounts
$scope.people.data.forEach(function(person){
person.account_types.forEach(function(account){
ctrl.acctTally.push(account.name);
})
});
}
angular.module('hellosolarsystem').component('acctList', {
bindings: { accounts: '<',
people: '<'
},
controller: aCtrl,
templateUrl: 'javascripts/app/components/accounts/acctsList/index.html'
})
组件模板
<table class = "table">
<thead>
<tr>
<th>Accounts</th>
<th>Number of Accounts Assigned Users</th>
</tr>
</thead>
<tbody>
<tr ng-repeat = "acct in $ctrl.acctTally">
<td>{{acct.name}}</td>
<td>{acct.tally}}<</td>
<td>
<button class = "btn btn-info" ng-click = "editUser($index)">Edit</button>
<button class = "btn btn-danger" ng-click = "deleteUser($index)">Delete</button>
</td>
</tr>
</tbody>
</table>
自 AngularJS 1.6 发布以来,当您的控制器函数实例化时,组件的绑定不可用。在此处查看中断性更改。与 Angular 2+ 不同$onInit
调用钩子时,绑定将可用。甚至你可以强制执行预填充绑定的旧行为,当控制器被实例化
.config(function($compileProvider) {
$compileProvider.preAssignBindingsEnabled(true);
})
但是Angular团队非常不鼓励做上述事情。
根据 1.6.0 的重大更改,您必须将代码移动到$onInit
钩子才能解决您的问题。
ctrl.$onInit = function() {
ctrl.people.data.forEach(function(person){
person.account_types.forEach(function(account){
ctrl.acctTally.push(account.name);
})
});
}