1、Warning:Each child in an array or iterator should have a unique "key" prop. Check the render method of `App`. See https://fb.me/react-warning-keys for more information.
这个问题很多见啊,我当时写我们项目中的列表时,用了Table组件,然后传进去的column里面也都有了key,但是还是报错,之后经检查发现是(如图)这两个子元素没有key来区分,所以分别加了key,然后warning就消失了
再多谈一些key的使用(引用自React组件开发小记(一)—— 组件的key)
指定key时,很多情况会直接使用map方法的第二个参数index作为组件的key。其实这是一种不推荐的写法。最好的key值是应该使用返回数据中的唯一标识来做组件的key(如果后端没有给你返回类似Id,key这种唯一标志性,当我没说)。
为什么这么推荐? 首先要明白,为什么组件要有唯一标识key值。React是根据组件上设定的key属性来生成该组件,只有key改变了,React才会更新组件,否则重用该组件。key相同,若组件属性有所变化,则react只更新组件对应的属性;没有变化则不更新。key值不同,则react先销毁该组件,然后重新创建。如果使用了index作为key值,这个index并没有和返回的数据列表做一一对应,相当于是用了一个随机值,本来这一项数据没有改变,React组件可以被重用,但是用了随机值,组件会重新渲染。 如果有两个组件有相同的key值,React则根据key认为两个组件是完全相同的,后一个组件会被抛弃掉。 React的diff算法分为treediff,componentdiff和elementdiff。在elementdiff中算法中,通过key进行算法优化。 当节点处于同一层级时,Reactdiff有三种节点操作,分别为:插入、移动和 删除。 如果没有key,假设老集合中包含节点:A、B、C,更新后的新集合中包含节点:B、C、A,此时新老集合进行对比,发现 B !== A,则创建B插入到集合,删除老集合 A;以此类推,创建并插入C、A,删除 B、C。 节点很多的话,这样的操作会很消耗性能。更加合理的方式是进行移动操作。key存在,通过key发现新老集合中的节点都是相同的节点,只需要将老集合中节点的位置进行移动,更新为新集合中节点的位置。则可以把B和C移动到A的前面。 唯一的key属性不会显性优化性能,但是对React内部是有利的。
2、vendor.js:1658 Warning: Notice: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://fb.me/react-special-props)
出错场景:notice提示组件的出现隐藏(如图)
为了区分,传递了一个唯一标实的参数key,但是从文档信息看:attempting to access this.props.key from a component (eg. the render function) is not defined.If you need to access the same value within the child component, you should pass it as a different prop (ex:).【尝试从组件(例如render函数)访问this.props.key未定义。如果你需要在子组件中访问相同的值,你应该用一个不同的prop值】
于是我们改成通过传递id就可以了(如图)
PS:React中有两个比较特殊的参数:ref 和 key,不会被传递到组件
(Most props on a JSX element are passed on to the component, however, there are two special props (refandkey) which are used by React, and are thus not forwarded to the component)
3、vendor-6a78e5c….js:1698 Warning: Unknown prop `place` on tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop
<i style={{float:'right',marginRight:'7px'}} data-tip={__('仅供查询报警对象名称')} place="top" className="iconfont tips"></i>
我们通过定位信息找到问题代码,然后根据提示信息发现是因为“place”这个属性用得不好,这属于我们自定义的属性,于是加上前缀 "data-"
4、Warning: setState(...): Can only update a mounted or mounting component.This usually means you called setState() on an unmounted component. This is a no-op. Please check the code for the TreeSelect component.
意思就是说父组件已经把子组件销毁了,你子组件里面还在setState
我们可以在setState的时候判断一下这个组件是否unMount了
如下操作:
saveName(nameText){
if(!this.isUnmounted){
this.setState({submitSuccess:true});
}
}
componentWillUnmount(){
this.isUnmounted=true;
}