ReactNative: 我用react-navigation組件。ReactNative:在導航欄的右邊按鈕上,點擊事件不工作,出錯
在右側鍵導航欄上,單擊事件不工作
`_newCustomer() {
alert('點擊新建');
}
static navigationOptions = {
title: '客戶列表',
headerRight: (
<Button title={'添加客戶'} onPress={this._newCustomer.bind(this)}/>
),
}
的錯誤:
undefined is not an object(evaluating 'this._newCustomer')
對不起,這是不正確 –