Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: thing in mynotes, Duplicate key: string:xxxxx, Duplicate value: xxxxx Um exemplo aplicado no Ionic com uma estrutura de repetição ng-repeat você...

Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: thing in mynotes, Duplicate key: string:xxxxx, Duplicate value: xxxxx
Um exemplo aplicado no Ionic com uma estrutura de repetição ng-repeat você pode adicionar track by $index <ion-item ng-repeat="thing in mynotes track by $index"> {{thing}} <ion-option-button style="width:200px;background:#ff0000;" class="button-assertive ion-trash-b" ng-click="remove(thing)"></ion-option-button> </ion-item>
Seja Membro Gratuítamente

Assine a newsletter para receber em seu email as publicações atualizadas neste blog

Top