Let's say there's a list that you want to show in React, and some developers may use index as key to avoid the warning of React, like this:react
<ul> {list.map((item, index) => <li key={index}>{item.name}</li> )} </ul>
Sure, you can do that, but it's a bad idea. Let's see what official said:git
We don’t recommend using indexes for keys if the order of items may change. This can negatively impact performance and may cause issues with component state.
But how does the key work? Don't worry, this is what I want to talk about next.github
Let's start with a example to figure out what the difference between using index and using unique id.dom
we render 2 different list initially and every item has a uncontrollable input. There are also some buttons on top which we can insert or delete items, each new item will be colored.this
The left side represents list with index-key, the right side represents list with unique-key.idea
As we can see from pictures, there seems to be something wrong on the left side. It got confused about which item belonged to which dom.spa
It will reuse the dom that already exist if their key are the same, that's the role of key. For more detail, here is the source code.code
For the sake of understanding, I'll explain it in a case.component
An array of length 5, I want to insert an item in 3rd position. when it comes to index of [0, 1], it's okay to reuse the existing doms. But when it comes to index of 2, it also reuses the existing dom because of same key. Besides, their state is different so the children of dom[2] will be updated. Next, index of 3 reuses dom[4] and so on.
It may cause terrible performance if list is long enough. If you insert a item at the start of list, it'll insert a dom at the end and update children all of item. But with unique id, it just insert a dom at the start.
It's a bad idea to use the array index since it doesn't uniquely identify your elements. In cases where the array is sorted or an element is added to the beginning of the array, the index will be changed even though the element representing that index may be the same. This results in unnecessary renders.
If you have to use index as key, please make sure you only operate the last item.