码迷,mamicode.com
首页 > 其他好文 > 详细

react中事件冒泡之填坑

时间:2018-07-04 18:44:15      阅读:672      评论:0      收藏:0      [点我收藏+]

标签:console   size   checkbox   ssm   label   场景   handle   The   checked   

今天在写个组件,大致代码是这样的:

class Switch extends React.Component {
    handlerChange = (e) => {
        const {onChange} = this.props;
        onChange && onChange(e);
    }
    render(){
        const {checkedLabel, uncheckedLabel, small, ...others} = this.props;
        const isSmall = size === ‘small‘;
        return (
            <span
                className="wrapper"
                {...otners}
            >
                {!isSmall && checked && checkedLabel ? <span className={`${prefix}-label`}>{checkedLabel}</span> : null}
                {!isSmall && !checked && uncheckedLabel ?
                    <span className={`${prefix}-label`}>{uncheckedLabel}</span> : null}
                <input type="checkbox" onChange={this.handlerChange} checked/>
            </span>
        );
    }
}

下面是该组件的业务应用场景:

class App extends React.Component {
    onChange = (e) => {
        console.log(e);
    }
    render(){
        return (
            <Switch 
                onChange={this.onChange}
                checkedLabel="已开启"
                uncheckedLabel="已关闭"
            />
        );
    }
}

运行代码,明明点击了一次,switch组件的handlerChange执行了一次,但是App的onChange执行了2次!!!

最后发现,原来是input的onChange事件向上冒泡,冒到了span.wrapper上,而我在const {checkedLabel, uncheckedLabel, small, ...others} = this.props;中并未将onChange过滤掉。

解决办法很简单,将这行代码改成 const {checkedLabel, uncheckedLabel, small, onChange ...others} = this.props; 就可以了。

问题虽简单,但还是让我懵逼了一会,在此处记录下来长个记性

react中事件冒泡之填坑

标签:console   size   checkbox   ssm   label   场景   handle   The   checked   

原文地址:https://www.cnblogs.com/clover77/p/9264472.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!