我有使用 ngRepeater 显示的数组,但是使用此指令我正在使用 ngInit 指令,该指令执行应该返回要显示的对象的函数。一切正常,但是当我添加“新建”按钮时,我将新值添加到数组中,然后函数“SetPreview”仅在我认为应该根据数组值的数量执行时才执行。我怎样才能做到这一点?
用户界面:
<body ng-app>
<ul ng-controller="PhoneListCtrl">
<button ng-click="add()">Add</button>
<li ng-repeat="phone in phones" ng-init="displayedQuestion=SetPreview(phone);">
{{displayedQuestion.name}}
<p>{{displayedQuestion.snippet}}</p>
</li>
</ul>
</body>
控制器:
function PhoneListCtrl($scope) {
$scope.phones = [
{"name": "Nexus S",
"snippet": "Fast just got faster with Nexus S."},
{"name": "Motorola XOOM™ with Wi-Fi",
"snippet": "The Next, Next Generation tablet."},
{"name": "MOTOROLA XOOM™",
"snippet": "The Next, Next Generation tablet."}
];
$scope.add = function(){
this.phones.push({name:'1', snippet:'n'});
};
$scope.SetPreview = function(phone)
{
//here logic which can take object from diffrent location
console.log(phone);
return phone;
};
}
编辑:
这里是更复杂的示例: -> 现在电话集合是空的,当您单击添加按钮时,新项目被添加并设置为可编辑(您可以更改文本字段中的值)并且当执行 ngRender 时 SetPreview 函数返回可编辑对象(就像预览一样工作)。现在尝试再次单击添加按钮,您可以看到第一项的可编辑值仍然呈现给用户,但我想刷新整个 ng-repeater。