我有一个组件,看起来像这样:
<ListItem onClick={() => history.push(`/link/${id}`)}>
Sometext
<Button onTouchTap={() => this.someFunction(false)} }
</ListItem>
onTouchTab由react-tap-event-plugin提供。
自从我读到它can now be replaced by onClick后,我改变了我的代码:
<ListItem onClick={() => history.push(`/link/${id}`)}>
Sometext
<Button onClick={() => this.someFunction(false)} }
</ListItem>
但现在的问题是,无法识别按钮onClick,只会获取ListItem的onClick。
我该如何解决?