创建一个组件然后渲染到页面上:classpersonextendsReact.Component{constructor(name,age){this.name=name;this.age=age;}render(){return({this.props.name}--{this.props.age});}}constdata={name:'张三',age:12}ReactDom.render(,document.getElementById('app')) 我的问题是,...代表展开运算符,在这里我的理解...data相当于把data给解构赋值了吧?,如果是解构赋值的话,ReactDom.render(,document.getElementById('app')) ,这样写为什么会报错呢? 非要这样写才正确...这里很迷惑,不知道这个'...'符号到底做了什么,
繁星coding
相关分类