componentWillReceiveProps(nextProps) { const { testValues } = this.props; const { pageSize } = this.state; if (nextProps.testValues !== testValues) { this.getQuery(nextProps.testValues, 1, pageSize); } }
父调用子组件的方法:可采用生命周期componentWillReceiveProps判断父组件的值是否变化来在子组件中调用子的方法。