搜尋

首頁  >  問答  >  主體

在 React 中克隆功能元件

我試圖修改和複製我正在建立的元件的子元素,最近注意到我的 children 類型根據我傳遞 children 的方式而發生變化>.

例如,如果我將 JSX 當作孩子傳遞:

<MyComponent>
  <div>Hello</div>
</MyComponent>

當我檢查 MyComponent 中的 children 結構時,我可以看到該物件如下:

{
  '$$typeof': Symbol(react.element),
  type: 'div',
  key: null,
  ref: null,
  props: { children: 'hello' },
  _owner: null,
  _store: {}
}

由於 props.children 存在,所以 React.cloneElement 可以直接使用它。

如果我創建一個像這樣的功能元件:

const Hello: React.FC = () => <div>hello</div>;

並嘗試像這樣使用它:

<MyComponent>
  <Hello/>
</MyComponent>

那麼children物件的結構就變成這樣了:

{
  '$$typeof': Symbol(react.element),
  type: [Function: Hello],
  key: null,
  ref: null,
  props: {},
  _owner: null,
  _store: {}
}

我不能再使用React.cloneElement,除非我呼叫children.type(),但我找不到太多相關文件。

為什麼會發生這種情況?這是預期的嗎?呼叫 children.type() 是克隆整個子元素樹的唯一方法嗎?

P粉851401475P粉851401475443 天前496

全部回覆(1)我來回復

  • P粉744691205

    P粉7446912052023-09-11 14:15:23

    Hello
    是 div, 是一個傳回 div 的函數,所以顯然它們不是同一件事。 < br> 有一個空物件作為props,因為它沒有子對象,而且我們沒有向它傳遞一個帶有值的屬性,因此props{}

    您真正想要存取和複製的是 傳回的父 JSX 元素的子元素,這與其 props 無關。
    傳回的父JSX 元素實際上是children.type() (函數傳回的內容)該元素將childs 包裹在其中(Hello),因此children.type().props.children< /code> 也存在於此,因此您可以克隆它。

    回覆
    0
  • 取消回覆