我只是想知道是否有一种动态渲染元素的最佳实践方法
考虑以下情况:
(1)参数工厂组件:
参数化工厂组件,其作用是基于字符串参数 呈现组件 ,有没有办法这样做而不必恢复到React.createElement?
<pre><code>// The following doesn't work
class Quiz extends React.Component{
constructor (props){
super (props);
this.state = {
questionText: '',
correctAnswer: [],
assetType: ['DragNDrop','MultipleChoice','MatchPairs']
}
}
render(){
const { questionText, correctAnswer } = this.state;
return <{this.state.assetType[this.props.typeIndex] />;
}
}
</code></pre>
(2)动态HTML代码:
基于整数输入呈现不同的HTML标头标记。为此,我最初尝试使用模板字符串,但不得不求助于条件渲染。
<pre><code>// No joy with Template strings
render (){
<{`h${this.state.headerSize}`}>
{this.state.headerText}
</ {`h${this.state.headerSize}`}>
}
我喜欢使用JSX,能够使用动态元素名称来保持一致性会很好。
我也意识到:
assetType: ['DragNDrop','MultipleChoice','MatchPairs']
可以存储为:
assetType: [<DragNDrop />,<MultipleChoice />, <MatchPairs />]
这将有效。
我对JSX元素数组的一个问题是如何将这些JSX元素存储在数据库中?我猜测我必须将它们存储为Strings
,但是当从数据库中拉回来时如何使用它们?
有人可以建议任何有关这些问题的工作和最佳实践方法吗?
答案 0 :(得分:6)
关于动态HTML代码:
编辑:
正如文档建议的那样, Dynamic types can be used at runtime 如果首先首先分配给大写变量:< / p>
class Quiz extends React.Component {
constructor(props) {
super(props);
this.state = {
questionText: '',
correctAnswer: [],
assetType: ['DragNDrop', 'MultipleChoice', 'MatchPairs']
}
}
render() {
const ElementNameStartsWithCapitalLetter = this.state.assetType[0];
// ^ -- capital letter here, ensure this works when used in JSX
return <ElementNameStartsWithCapitalLetter />;
}
}
这是因为 User Defined JSX Components Must BE Capitalized 。
以前的解决方案:
使用React.createElement:
class Quiz extends React.Component{
constructor (props){
super (props);
this.state = {
questionText: '',
correctAnswer: [],
assetType: ['DragNDrop','MultipleChoice','MatchPairs']
}
}
render(){
const { questionText, correctAnswer } = this.state;
{React.createElement(
[this.props.typeIndex],
{...questionText, ...correctAnswer}
);}
}
}
使用条件渲染:
// Conditional rendering works, but yuck!
// One condition per state works
// <b>but can be unnecessarily verbose</>
getHeader() {
switch(this.state.headerSize){
case 1:
return <h1>{ this.state.headerText }; <h1>
case 2:
return <h2>{ this.state.headerText }<h2>
.
.
.
default:
return null;
}
}
render (){
return { this.getHeader() }; // bound correctly in constructor of course :)
}