react 代码优化(一) ——事件处理

React的事件处理

1、React 的事件绑定属性的命名要采用驼峰时写法, 不能小写

2、要传入一个函数作为事件处理函数,不能是字符串

例如:<button onclick={handleMe}>click me!</button>

3、阻止默认行为preventDefault

function ActionLink() {
  function handleClick(e) {
    e.preventDefault();  //阻止默认行为
    console.log('The link was clicked.');
  }

  return (
    <a href="#" onClick={handleClick}>
      Click me
    </a>
  );
}    

4、事件绑定

1、在构造函数中使用bind绑定this

class Introduce extends React.Component {
    constructor (props) {
        super(props);
        this.handleClick = this.handleClick.bind(this)
    }
    
    handleClick() {
        console.log('hello')
    }
    
    render() {
        return (
            <div onClick={this.handleClick}>click me!</div>
        )
    }
}

优点:这种绑定方式 是官方推荐的,在类构造函数中绑定this, 只会生成一个方法实例, 并且绑定一次之后如果多次用到这个方法,也不需要再绑定
缺点:即使不用到state,也需要添加类构造函数来绑定this,代码量多一点

2、使用属性初始化器语法绑定this(实验性)

class Introduce extends React.Component {
    handleClick = () => {
        console.log('hello')
    }
    render() {
        return (
            <div onClick={this.handleClick}>click me!</div>
        )
    }
}
这种属性初始化语法,将方法初始化为箭头函数,因此在创建函数的时候就绑定了this,无需再次绑定,这种需要结合babel转义,很方便

3、在调用的时候使用bind绑定this

class Introduce extends React.Component {
    handleClick() {
        console.log('hello')
    }
    render() {
        return (
            <div onClick={this.handleClick.bind(this)}>click me!</div>
        )
    }
}

4、在调用的时候使用箭头函数绑定this

class Introduce extends React.Component {
    handleClick() {
        console.log('hello')
    }
    render() {
        return (
            <div onClick={() => this.handleClick()}>click me!</div>
        )
    }
}
3、4这种方式会有性能影响并且如果回调函数作为属性传给子组件的时候会导致重新渲染的问题 
综上,方式一是官方推荐的,方式二是我们用起来比较好用的 也结合了 方式1、3、4的优点


    原文作者:Cymiran
    原文地址: https://segmentfault.com/a/1190000014808613
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞