zoukankan      html  css  js  c++  java
  • react父子组件传值方式一之props方法

    父组件

    import React, { useState, useEffect, memo, useMemo, createContext, useCallback, useReducer, useContext } from 'react';
    import Counter from './four';
    export function Three(props) {
      const [clval, setClval] = useState(null)
      const getChildrenValue = (value) => {
        console.log('value父', value);
      // 获取子组件传过来的value值并设置到clval,val参数就是子组件的value值 setClval(value) }
    return ( <div> {clval}
      {/* 这里是重要代码,向子组件传递getValue这个prop,它的值是一个回调函数 */}
    <Counter getValue={getChildrenValue}></Counter> </div> ); }
    Counter子组件
    import React, { useState, createContext, useContext } from 'react';
    function Counter(props) {
      const [value, setValue] = useState("我是三级子组件");
      const toparent = () => {
        console.log('我是儿子', props)
      // 向父组件传递每次递增的value值 props.getValue(value) }
    return ( <div> 222
      {/* <button onClick={() => toparent()}>我是子组件</button> */}
          <button onClick={toparent}>我是子组件</button>
        </div>
      )
    }
    export default Counter

    参考的https://blog.csdn.net/m0_38134431/article/details/118489375

  • 相关阅读:
    sha256 in C language
    制作带动画效果的状态栏
    带进度条的任务栏
    在状态栏中显示当前系统时间
    在状态栏中显示当前操作员
    在状态栏中显示复选框
    设计浮动工具栏
    可以拉伸的菜单
    任务栏托盘菜单
    带历史信息的菜单
  • 原文地址:https://www.cnblogs.com/lsc-boke/p/15038185.html
Copyright © 2011-2022 走看看