美文网首页
react-native 报错:Each child in an

react-native 报错:Each child in an

作者: 挪威森林_29e6 | 来源:发表于2017-09-07 14:53 被阅读0次

解决办法:在被遍历的组件中添加key属性,即key = {key}

代码如下:

this.props.bannerImg.map((data,key)=>{             

      return  <Image key={key}   source={{uri:data.imgUrl}} style={styles.banner}/>

})

相关文章

网友评论

      本文标题:react-native 报错:Each child in an

      本文链接:https://www.haomeiwen.com/subject/cnsijxtx.html