我觉得我错过了static
这件事的一些重要好处。
export default class ComponentName extends Component {
static someMethod = () => {
}
static someVariable = {
a: 'b'
}
render() {
return (
<View>
<Text>ComponentName</Text>
</View>
);
}
}
为什么我会使用此而不是常规const functionName = () => {}
或变量?