子onClick被忽略

时间:2018-01-11 14:35:03

标签: reactjs

我有一个组件,看起来像这样:

<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。

我该如何解决?

0 个答案:

没有答案