我一直在到处寻找,找不到解决方案。
我只是想执行以下操作:
import ComponentOne from '../components/component-one'
import ComponentTwo from '../components/component-two'
class Home extends Component {
constructor( props ) {
// So I can dynamically call a Component, found no other way
this.components = {
ComponentOne: <ComponentOne />,
ComponentTwo: <ComponentTwo />
}
}
[...code removed for brevity...]
_appendStep( step ) {
var component = React.cloneElement(this.components[step])
this.steps.appendChild( component )
}
}
这对我来说似乎很简单。我有
<div className="recipe-steps" ref={(ref) => this.steps = ref}></div>
我也需要动态appendChild
组件。问题是,我附加到此的“步骤”<div>
绝对需要是我创建的组件之一,需要允许我添加多个组件子级,甚至复制(这就是我使用的原因React.cloneElement()
)组件。
一旦我附加了所有“步骤”,稍后的过程将解析每个步骤以确定如何运行配方。
以下工作很好,但我不需要创建一个简单的 DOM 节点,我需要使用我已经构建的组件并附加它
var basicElement = document.createElement('h1')
basicElement.innerHTML = "This works, but I need a component to work too"
this.steps.appendChild( basicElement )
尝试时出现以下错误this.steps.appendChild( component )
:
错误:
Uncaught TypeError: Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node'.
我想我的主要问题是:如何将我的 React 组件转换为可以与 一起使用的节点this.steps.appendChild()
?
或者:是否有“反应方式”将子组件动态附加到我的this.steps
?