父组件使用子组件,子组件绑定父组件数据 ,子组件用props使用父组件数据
import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; class App extends Component { constructor(props){ super(props); // 父组件数据 this.state = { test :202 } } render() { return ( <div> <div> {this.state.test} {/* 子组件绑定父组件数据 */} <Test content={this.state.test}></Test> </div> </div> ); } } class Test extends Component{ constructor(props){ super(props) } render(){ return ( <div> {/* 子组件使用父组件数据this.props.xxx */} <div>{this.props.content}</div> </div> ) } } export default App;