这是一个普遍的问题,因为我在任何地方都没有见过这样的事情。因此,如果我有一个像下面的示例这样的父组件,并且我要在父组件中渲染子组件的子组件,如果可能的话,我怎么能这样做(除了在父组件中创建 getParentComponent(children) 方法)。是否存在当调用子渲染时会自动插入子内容?
import React, {Component} from 'react';
import {View} from 'react--native;
class CustomView extends Component {
render() {
return (
<View style={styels.customStyle}>
// this is where I want to render my child content
</View>
)
}
}
import React, {Component} from 'react';
import {CustomView} from 'somewhere;
class ChildView extends CustomView {
render() {
return (
<View style={styels.childStyle}>
// take this view and all the content with in and render it in the parent render
</View>
)
}
}