网站首页 > 网页设计教程 > Javascript教程 > react中什么是父子组件

react中什么是父子组件

  • 作者:互联网
  • 时间:2022-07-20 14:36:09

在react组件的相互调用中,把调用者称为父组件,被调用者称为子组件。父子组件间可以传值:1、父组件向子组件传值时,先将需要传递的值传递给子组件,然后在子组件中,使用props来接收父组件传递过来的值;2、子组件向父组件传值时,需要通过触发方法来传递给父组件。

本教程操作环境:Windows7系统、react18版、Dell G3电脑。

一、React中的组件

react组件就是自己定义的非html标签,规定react组件首字母大写:

class App extends Component{}

1.png

二、父子组件

组件的相互调用中,把调用者称为父组件,被调用者称为子组件:

import React from 'react';import Children from './Children';class Up extends Re***.Component { constructor(props){ super(props); th***state = { } } render(){ co***le.log("render"); return(
up
) }}export default Up;import React from 'react';class Children extends Re***.Component{ constructor(props){ super(props); th***state = { } } render(){ return (
Children
) }}export default Children;

三、父组件给子组件传值

父组件向子组件传值使用props。父组件向子组件传值时,先将需要传递的值传递给子组件,然后在子组件中,使用props来接收父组件传递过来的值。

父组件在调用子组件的时候定义一个属性:

这个值msg会绑定在子组件的props属性上,子组件可以直接使用:

th***props.msg

父组件可以给组件传值,传方法,甚至可以把自己传递给子组件

3.1 传值

import React from 'react';import Children from './Children';class Up extends Re***.Component { constructor(props){ super(props); th***state = { } } render(){ co***le.log("render"); return(
up
) }}export default Up;import React from 'react';class Children extends Re***.Component{ constructor(props){ super(props); th***state = { } } render(){ return (
Children
{th***props.msg}
) }}export default Children;

在这里插入图片描述

3.2 传方法

import React from 'react';import Children from './Children';class Up extends Re***.Component { constructor(props){ super(props); th***state = { } } run = () => { co***le.log("父组件run方法"); } render(){ co***le.log("render"); return(
up
) }}export default Up;import React from 'react';class Children extends Re***.Component{ constructor(props){ super(props); th***state = { } } run = () => { th***props.run(); } render(){ return (
Children
) }}export default Children;

在这里插入图片描述

3.3 将父组件传给子组件

import React from 'react';import Children from './Children';class Up extends Re***.Component { constructor(props){ super(props); th***state = { } } run = () => { co***le.log("父组件run方法"); } render(){ co***le.log("render"); return(
up
) }}export default Up;import React from 'react';class Children extends Re***.Component{ constructor(props){ super(props); th***state = { } } run = () => { co***le.log(th***props.msg); } render(){ return (
Children
) }}export default Children;

2.png

四、子组件给父组件传值

子组件向父组件传值通过触发方法来传值

import React from 'react';import Children from './Children';class Up extends Re***.Component { constructor(props){ super(props); th***state = { } } getChildrenData = (data) => { co***le.log(data); } render(){ co***le.log("render"); return(
up th***getChildrenData}/>
) }}export default Up;import React from 'react';class Children extends Re***.Component{ constructor(props){ super(props); th***state = { } } render(){ return (
Children
) }}export default Children;

在这里插入图片描述

五、父组件中通过refs获取子组件属性和方法

import React from 'react';import Children from './Children';class Up extends Re***.Component { constructor(props){ super(props); th***state = { } } clickButton = () => { co***le.log(th***refs.children); } render(){ co***le.log("render"); return(
up
) }}export default Up;``````jsimport React from 'react';class Children extends Re***.Component{ constructor(props){ super(props); th***state = { title: "子组件" } } runChildren = () => { } render(){ return (
Children
) }}export default Children;```![在这里插入图片描述](https://img-blog.csdnimg.cn/20200722065137748.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xldGlhbnhm,size_16,color_FFFFFF,t_70)