gpt4 book ai didi

javascript - 渲染函数内的组件是否称为子组件

转载 作者:行者123 更新时间:2023-12-02 22:43:22 25 4
gpt4 key购买 nike

我对 child 组件有点困惑。据我所知,子组件是嵌套在其他组件内的组件,例如

<Parent>
<Child />
</Parent>

但是Parent组件的render函数里面的组件是什么呢?这叫什么?以父组件为例

class Parent extends React.Component {
render() {
return (
<ComponentX>
{this.props.children}
</ComponentX>
)
}
}

ComponentX 是否称为父组件的子组件?

我很感激任何解释。提前致谢

最佳答案

Is ComponentX called a children of Parent Component?

没有。

ComponentX 称为 Parent 子级的封闭组件

类似于 React.Fragments使用时,如果没有封闭元素,将会出现警告:

Parse Error: Adjacent JSX elements must be wrapped in an enclosing tag

关于javascript - 渲染函数内的组件是否称为子组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58514484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com