React父组件向子组件传值

发布时间:2024年01月17日

目录

需求

代码实现

父组件

子组件


需求

首先,在父组件中,我想点击按钮触发事件调用方法去setState值,因为值变了所以引发子组件重新刷新加载,在子组件中检查传递给子组件的属性是否发生变化,并根据需要执行操作。

代码实现

父组件

class ParentComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      cityName: 'New York',
    };
  }

  handleChangeCity = (newCityName) => {
    this.setState({ cityName: newCityName });
  };

  render() {
    return (
      <div>
        <button onClick={() => this.handleChangeCity('London')}>
          Change City to London
        </button>
        <ChildComponent cityName={this.state.cityName} />
      </div>
    );
  }
}

子组件

class ChildComponent extends Component<any, any> {
  constructor(props: any) {
    super(props);
    this.state = {
      cityName: '',
    };
  }

  componentWillReceiveProps(nextProps: any) {
    // 检查传递给子组件的属性是否发生变化,并根据需要执行操作
    alert(nextProps.cityName);
    if (this.props.cityName !== nextProps.cityName) {
      alert('City Name has changed');
    }
  }

  render() {
    return null; // 或其他组件的渲染内容
  }
}
文章来源:https://blog.csdn.net/qq_38196449/article/details/135640273
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。