react学习(31)----react父传子

Posted 小歌谣(公众号同名)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react学习(31)----react父传子相关的知识,希望对你有一定的参考价值。

import React from 'react'
import Son from './son'
class Father extends React.Component {
  constructor(props) {
    super(props)
  }
  state = {
    info: '父组件',
  }
  handleChange = (e) => {
    this.setState({
      info: e.target.value,
    })
  }
  render() {
    return (
      <div>
        <input type='text' value={this.state.info} onChange={this.handleChange} />
        <Son info={this.state.info} />
      </div>
    )
  }
}
export default Father

// 子组件
import React from 'react'
interface IProps {
  info?: string
}
class Son extends React.Component<IProps> {
  constructor(props) {
    super(props)
  }
  render() {
    return (
      <div>
        <p>{this.props.info}</p>
      </div>
    )
  }
}
export default Son

以上是关于react学习(31)----react父传子的主要内容,如果未能解决你的问题,请参考以下文章

react实现父传子子传父

React父传子和子组件触发修改父组件修改数据

对象作为 React 子代无效(在 Internet Explorer 11 中用于 React 15.4.1)

react 父传子 弹窗的显示或关闭

React数据通信父传子和子传父的使用

React学习第二天