TypeError:无法读取undefined的属性'navigation'? 看起来我的组件无法访问this.props.navigation。(react-navigation) 基本上每当我调用时,我都会收到此错误:const {navigate} = this.props.navigation。
知道如何让组件访问this.props.navigation吗?
答案 0 :(得分:1)
ES6课程不会自动成本this
。有一些解决方案,比如构造函数中的绑定或只是将其更改为箭头函数:
renderRow = ({ item }) => {
// rest of code
}