16. react - Fragment

Posted monkey-k

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16. react - Fragment相关的知识,希望对你有一定的参考价值。

1. Fragment : 可以理解为空标签。 类似与 微信小程序的 <block>

2. 实例:

import { Fragment } from ‘react‘

class LI extends React.Component {
  constructor (props) {
    super(props)
  }
  render () {
    console.log(this.props.lists)
    return(
      <Fragment>
        {
          this.props.lists.map(i => (
            <li key={i}>{ i }</li>
          ))
        }
      </Fragment>
    )
  }
}

class UL extends React.Component {
  constructor(props) {
    super(props)
  }

  render () {
    const lists = [1,2,3,4]
    return(
      <ul>
        <LI lists={lists}></LI>
      </ul>
    )
  }
}
ReactDOM.render(
  <UL />,
  document.getElementById(‘root‘)
)

以上代码的渲染结果: 

技术图片

 

以上是关于16. react - Fragment的主要内容,如果未能解决你的问题,请参考以下文章

React 片段中的文本

16. react - Fragment

Android Fragment 未显示在 React Native App 中

更换 Fragment 并按回

细读 React Fragment

如何知道 Fragment 何时变得不可见