Open yinyinnnn opened 3 years ago
constructor(props){ super(props); this.state = { treeAll:[] , // 所有节点 }; }
componentDidMount(){ message.success(‘初始化成功’); }
useEffect(() => { message.success(‘初始化成功’); });
const [commitDisabled,setCommitDisable]=useState(true);
React中初始化数据的四种方法
1.在组件的constructor中
2.在生命周期函数中
3.在HOOK函数中
4.render函数中