在React中子组件给父组件传参通过回调函数来进行。
父组件给子组件传递一个回调函数作为属性。
子组件在需要传递参数的地方调用父组件传递的回调函数即可。
import React, { Component } from 'react' class Navbar extends Component { render() { return ( <div style={{ backgroundColor: 'red' }}> <button onClick={ () => { this.handlerClick() } }>click</button> <span>navbar</span> </div> ) } handlerClick() { this.props.event()//调用父组件传来啊的回调函数 } } class Siderbar extends Component { render() { return ( <div style={{ backgroundColor: "yellow", width: '200px' }}> <ul> <li>11111</li> <li>11111</li> <li>11111</li> <li>11111</li> <li>11111</li> <li>11111</li> <li>11111</li> </ul> </div> ) } } export default class App extends Component { state = { isShow: true } render() { return ( <div> <Navbar event={() => { console.log('event事件') this.setState({ isShow: !this.state.isShow }) }}></Navbar> {this.state.isShow && <Siderbar></Siderbar>} </div> ) } } /* 父传子:通过属性, 子传父:通过回调函数 */
标签:20,子传父,render,11111,Component,isShow,React,组件 From: https://www.cnblogs.com/SadicZhou/p/17816691.html