我有以下配置为 JSON
var componentConfig = {
content: { type: "ContentContent", data: "content"},
new_content: { type: "ContentFormContent", data: "content"}
}
在 react rendercomponent 中,是否可以动态传递组件名称来响应渲染。
例如,在这个渲染组件中而不是直接放置 ContentFormContent 是否可以从 json 配置传递数据,我可以循环或其他东西。
React.renderComponent(<ContentFormContent data={[componentConfig.new_content.data]} />, body);
所以我将在 json 配置中有一个页面列表,并根据特定导航的选择,我将根据 json 文件中的“类型”呈现组件