我試圖修改和複製我正在建立的元件的子元素,最近注意到我的children
類型根據我傳遞children
的方式而發生變化>.
例如,如果我將 JSX 當作孩子傳遞:
Hello
當我檢查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 = () =>hello;
並嘗試像這樣使用它:
那麼children
物件的結構就變成這樣了:
{ '$$typeof': Symbol(react.element), type: [Function: Hello], key: null, ref: null, props: {}, _owner: null, _store: {} }
我不能再使用React.cloneElement
,除非我呼叫children.type()
,但我找不到太多相關文件。
為什麼會發生這種情況?這是預期的嗎?呼叫children.type()
是克隆整個子元素樹的唯一方法嗎?
Hello
props
,因為它沒有子對象,而且我們沒有向它傳遞一個帶有值的屬性,因此props
是{}
。您真正想要存取和複製的是
傳回的父 JSX 元素的子元素,這與其 props 無關。
傳回的父JSX 元素實際上是
children.type()
(函數傳回的內容)該元素將childs 包裹在其中(Hello),因此children.type().props.children 也存在於此,因此您可以克隆它。