使用 React 子组件上的props更新状态

IT技术 javascript reactjs
2021-04-27 09:20:55

我有一个 React 应用程序,其中来自父组件的props传递给子组件,然后props在子组件上设置状态。

在我向父组件发送更新的值后,子组件不会使用更新的 props 更新状态。

如何让它更新子组件上的状态?

我的精简代码:

class Parent extends React.Component {
    constructor (props) {
        super(props);
        this.state = {name: ''} 
    }
    componentDidMount () {
        this.setState({name: this.props.data.name});
    }
    handleUpdate (updatedName) {
        this.setState({name: updatedName});
    }
    render () {
        return <Child name={this.state.name} onUpdate={this.handleUpdate.bind(this)} />
    }
}


class Child extends React.Component {
    constructor (props) {
        super(props);
        this.state = {name: ''} 
    }
    componentDidMount () {
        this.setState({name: this.props.name});
    }
    handleChange (e) {
        this.setState({[e.target.name]: e.target.value});
    }
    handleUpdate () {
        // ajax call that updates database with updated name and then on success calls onUpdate(updatedName)
    }
    render () {
        console.log(this.props.name); // after update, this logs the updated name
        console.log(this.state.name); // after update, this logs the initial name until I refresh the brower
        return <div>    
                    {this.state.name}
                    <input type="text" name="name" value={this.state.name} onChange={this.handleChange} />
                    <input type="button" value="Update Name" onClick={this.handleUpdate.bind(this)} />
                </div>
    }
}
4个回答

您需要componentWillReceiveProps在您的孩子中实施

componentWillReceiveProps(newProps) {
    this.setState({name: newProps.name});
}

编辑: componentWillReceiveProps现在已弃用并将被删除,但在上面的文档链接中有其他建议。

调用setState()componentWillReceiveProps不会造成额外的重新渲染。接收 props 是一个渲染,如果 this.setState 在像componentDidUpdate这样的方法中执行,它将是另一个渲染我建议this.state.name !== nextProps.nameshouldComponentUpdate 中执行以便始终检查是否有任何更新。

componentWillReceiveProps(nextProps) {
    this.setState({name: nextProps.name});
}

shouldComponentUpdate(nextProps) {
    return this.state.name !== nextProps.name;
}

检查您是否甚至需要更新状态也很好,因为这会导致重新渲染。

componentWillReceiveProps(newProps) {
  if (this.state.name !== newProps.name) {
    this.setState({name: newProps.name});
  }
}

几件事。至少可以说,您在单击时绑定函数的方式是不寻常的。我建议您要么在构造函数上执行此操作,要么改用箭头函数(这将自动将函数绑定到类)。

export default class Parent extends Component {

    constructor (props) {
        super(props);
        this.state = {name: ''} 
    }

    handleUpdate = (updatedName) => {
        this.setState({name: updatedName})
    }

    render () {
        return <Child name={this.state.name} onUpdate={this} />
    }
}

export default class Child extends React.Component {
  constructor(props) {
    super(props);
    this.state = { name: "" };
  }

  componentDidMount() {
    this.setState({ name: this.props.name });
  }

  handleChange = (e) => {
    this.setState({ name: e.target.value });
  }

  handleUpdate() {
    // ajax call that updates database with updated name and then on success calls onUpdate(updatedName)
  }

  render() {
    console.log(this.props.name); // after update, this logs the updated name
    console.log(this.state.name); // after update, this logs the initial name until I refresh the brower
    return (
      <div>
        {this.state.name}
        <input
          type="text"
          name="name"
          value={this.state.name}
          onChange={this.handleChange}
        />
        <input
          type="button"
          value="Update Name"
          onClick={this.handleUpdate}
        />
      </div>
    );
  }
}

此外,我建议您决定是否需要从 Parent 或 Child 管理/更新props如果 Parent 负责处理状态,那么您应该将 handleUpdate 传播给 Parent:

//@Parent component
<Child handleUpdate={()=> this.handleUpdate} .../>
//@Child component
handleUpdate = () => {
   this.props.handleUpdate
}

你不应该被要求使用任何其他函数(在 React 16+ 中)来管理从子级到父级的props,反之亦然。

通常,这些“双向”情况是结构“气味”,表示每个组件的关注点分离已被错误调整或尚未完全弄清楚。