0

这是一个普遍的问题,因为我在任何地方都没有见过这样的事情。因此,如果我有一个像下面的示例这样的父组件,并且我要在父组件中渲染子组件的子组件,如果可能的话,我怎么能这样做(除了在父组件中创建 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>
        )
    }
}
4

1 回答 1

0

从本质上讲,父类不知道extends它的任何类。所以不行。MDN 扩展文档解释更多。

否则,refs可能会帮助您访问 a Componentprops例如children.

于 2016-10-06T16:34:47.930 回答