什么时候可以用index做id?
- the list and items are static–they are not computed and do not change;
列表的项是静态的-不会被重新计算和改变 - the items in the list have no ids;
列表的各项没有唯一值ids - the list is never reordered or filtered.
列表不会被重新排序和过滤
用key的规则:
- 在兄弟组件间唯一
- key只会传给React,不会向下传递。(props.key读不到)