10
使用es6类时,React中的“ super()”和“ super(props)”有什么区别?
当是重要的传球props到super()了,为什么? class MyComponent extends React.Component { constructor(props) { super(); // or super(props) ? } }
530
reactjs
ecmascript-6