因为语法必须使用一个总的div包裹,如果使用多个组件嵌套,更加造成了div的嵌套,相当于微信小程序里面的block标签,在页面中不存在节点,可以传递一个key作为唯一标识

    image.png

    1. import React, { Component,Fragment } from 'react'
    2. export default class index extends Component {
    3. render() {
    4. return (
    5. <Fragment key={1}>
    6. <input type="text"/>
    7. <input type="text"/>
    8. </Fragment>
    9. )
    10. }
    11. }