我試圖在導航欄右上角保持可觸摸不透明度,對於onPress的可觸摸不透明度。我想把用戶帶到主頁。undefined不是一個對象(評估this.props.navigation)
constructor(props) {
super(props);
this.state = {
stAccntList: [],
stUserAccountNo: '',
stCustNo: '',
resp: '',
};
}
static navigationOptions = {
// title: 'myacc',
title: 'My Accounts',
headerRight: <TouchableHighlight onPress={() => {
this.props.navigation.navigate('home');
}}>
<Image style={{ marginRight: 20 }} source={require('../../../resources/toolbar/home_inactive.png')} />
</TouchableHighlight>,
headerTintColor: 'white',
headerStyle: {
backgroundColor: colors.themeColor,
// top: 30
}
}
這是拋出紅色屏幕上面的錯誤。請讓我知道我要去哪裏錯了。
你能指望什麼'this'指在'this.props.navigation.navigate( '家');'? –