React之事件绑定列表中key的使用

Posted 太上老俊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React之事件绑定列表中key的使用相关的知识,希望对你有一定的参考价值。

在学习React的Hadding Events这一章节,发现事件回调函数的几种写法,看似区别不大,但实际差异还是蛮大的。

class Toggle extends React.Component{
  constructor(props) {
    super(props);
  
    this.state = {isToggleOn:false};

    //necessary
    this.bindClick = this.bindClick.bind(this);//推荐写法
  };

  bindClick(){
    this.setState(
      prevState => ({
        isToggleOn : !prevState.isToggleOn
      })
    )
  };

  render() {
    return (
      // <button onClick={(e) => this.bindClick(e)}>   //这种写法导致每次呈现组件都要创建一个回调方法,浪费性能
      
      <button onClick={this.bindClick}>
       {this.state.isToggleOn ? "ON" : "OFF"}
      </button>
    )
  };
}

ReactDOM.render(<Toggle /> ,document.getElementById("example"))

通常使用推荐写法

 

2、列表中的key

在React中,列表中的key很关键,虽然不是必需的,但是

Keys help React identify which items have changed, are added, or are removed. Keys should be given to the elements inside the array to give the elements a stable identity

并且如果封装一个列表组件,key最好赋给封装组件,而非原始列表,

key不会作为组件的props传递

如下:key赋给ListItem而非li

function ListItem(props) {
  const value = props.value;
  return (
    // Wrong! There is no need to specify the key here:
    <li key={value.toString()}>
      {value}
    </li>
  );
}

function NumberList(props) {
  const numbers = props.numbers;
  const listItems = numbers.map((number) =>
    // Wrong! The key should have been specified here:
    <ListItem value={number} />
  );
  return (
    <ul>
      {listItems}
    </ul>
  );
}

const numbers = [1, 2, 3, 4, 5];
ReactDOM.render(
  <NumberList numbers={numbers} />,
  document.getElementById(‘root‘)
);

 

以上是关于React之事件绑定列表中key的使用的主要内容,如果未能解决你的问题,请参考以下文章

react之事件处理

写 React / Vue 项目时为什么要在列表组件中写 key,其作用是什么?

React事件处理

13 个非常有用的 Python 代码片段

Reactreact概述组件事件

React中jquery引用