什么时候可以用index做id?

    1. the list and items are static–they are not computed and do not change;
      列表的项是静态的-不会被重新计算和改变
    2. the items in the list have no ids;
      列表的各项没有唯一值ids
    3. the list is never reordered or filtered.
      列表不会被重新排序和过滤

    用key的规则:

    1. 在兄弟组件间唯一
    2. key只会传给React,不会向下传递。(props.key读不到)