I've read a documentation, I've tried to google it and check with code but still I can't find an answer.
I have an array of string, for example
['Tom', 'Sarah', 'Ben']. Its content will change dynamically and regularly. I'd like to use a trackBy function with it.
object with id.Thank you
A typical way is to use index.
html
<div *ngFor="let e of array; trackBy: trackByFunc;">
...
</div>
ts
trackByFunc = (index: number, value: string) => index;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With