动态 JSX 元素/标签名称

IT技术 javascript reactjs babeljs jsx
2021-05-14 17:12:47

我只是想知道是否有使用 ReactJS 动态渲染元素的最佳实践方法

考虑以下场景:

(1) Parameter Factory 组件:
参数化工厂组件,其工作是根据字符串参数渲染组件,有没有办法无需恢复到 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但是当从数据库拉回时如何使用它们?

任何人都可以建议任何工作和最佳实践方法来解决这些问题吗?

1个回答

关于动态 HTML 标签:

编辑:
正如文档所建议的,如果首先分配给大写变量则可以在运行时使用动态类型

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 />;
    }
}

这是因为用户定义的 JSX 组件必须大写



以前的解决方案:

使用 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 :)
}