admin管理员组文章数量:1344578
I found that ng-init is not updated after rowIndex is updated.
<div ng-init="item = getItem(rowIndex)">
{{ item.Name }}
</div>
item is not updated after rowIndex is changed (even if changes are made with $timeout)
Is there other directive that allows to avoid using the following dirty trick:
<div ng-repeat="item in [getItem(rowIndex)]">
{{ item.Name }}
</div>
I found that ng-init is not updated after rowIndex is updated.
<div ng-init="item = getItem(rowIndex)">
{{ item.Name }}
</div>
item is not updated after rowIndex is changed (even if changes are made with $timeout)
Is there other directive that allows to avoid using the following dirty trick:
<div ng-repeat="item in [getItem(rowIndex)]">
{{ item.Name }}
</div>
Share
Improve this question
asked May 2, 2018 at 15:09
Pablo HoneyPablo Honey
1,0961 gold badge11 silver badges23 bronze badges
1
-
ng-repeat
has a watcher (over a collection), so just get a watcher any other way. That depends on howrowIndex
is updated. If somewhere within an input filed, useng-changed="updateItem(rowIndex,item)"
. If somewhere else, then use$scope.$watch('item', function() {$scope.item = getItem(rowIndex); ...
– Aleksey Solovey Commented May 2, 2018 at 15:13
2 Answers
Reset to default 10Another approach is to set the variable inside a bogus attribute:
<div x="{{item = getItem(rowIndex)}}">
{{ item.Name }} {{item.Value}}
</div>
On each digest cycle the value of item
will be updated.
In this case where item
has more that one property, the getItem
function needs to be invoked only once.
Keep in mind that it would be even more efficient for the controller to update the value of item
only once when rowIndex
changes instead of invoking the getItem
function every digest cycle.
Avoid using ng-init
Avoid using ng-init
. It tangles the Model and View, making code difficult to understand, test, debug, and maintain. Instead initialize the Model in the controller.
From the Docs:
ngInit
This directive can be abused to add unnecessary amounts of logic into your templates. There are only a few appropriate uses of
ngInit
, such as for aliasing special properties ofngRepeat
, as seen in the demo below; and for injecting data via server side scripting. Besides these few cases, you should use controllers rather thanngInit
to initialize values on a scope.— AngularJS ng-init Directive API Reference
ngInit
does not update. It's a one-shot directive. You should just call the function from within the curly braces, since you are wanting to watch for changes to rowIndex
:
<div>
{{ getItem(rowIndex).Name }}
</div>
This could hurt performance on large lists, since getItem
will be called on every digest cycle, but it's easy to read.
https://plnkr.co/edit/cZ2SG6nf2SufdAWe1ye7?p=preview
本文标签: javascriptHow to force update of nginit Stack Overflow
版权声明:本文标题:javascript - How to force update of ng-init ? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743741418a2530965.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论