jquery - Angular table performance -
im trying draw table more efficient way have directive cells complex. consist of ng-repeats example. noticed ng-repeat creates new scope. ive got nested ng-repeat wchich results in tons of scopes. noticed linking veeery slow. how optimize that?
if using angularjs 1.3 can use one-time binding
operator ::
for example on ng-repeat
<ul> <li ng-repeat="item in ::items">{{item.name}};</li> </ul>
for more details can see link below:
Comments
Post a Comment