微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

react 事件传参

在开发react项目时,点击事件需要传参,就有了以下的写法:

<Button type="primary" size="small" onClick={this.showModal.bind(this,lists[i])}>编辑</Button>
<Button type="primary" size="small" onClick={this.showDelete.bind(this,lists[i])}>删除</Button>

运行时报错:

分享图片

但,奇怪的是,我两个button都用到了,可是只有一个报错,那我猜测可能是showModal或者showDelete没定义,一查,确实如此。

另: 附带es6中react的绑定办法:

<Button type="primary" size="small" onClick={e => this.showModal(lists[i])}>编辑</Button>
<Button type="primary" size="small" onClick={e => this.showDelete(lists[i])}>删除</Button>

即,箭头函数

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐