我已经在代码库中看到了这一点:
Class MyComponent extends React.Component {
constructor(props) {
if(!props.value) return null
this.state = {
value: props.value
}
}
....
}
这是一个React组件。
我想知道如果您在构造函数中提前返回会发生什么?
将实例化该组件吗?这会引起问题吗?