看有的代碼這么寫,還能運行,生命周期鉤子加async,不太理解這種行為,不說componentWillMount是同步的,在render前面執(zhí)行,這樣不會阻塞嗎?class Edit extends Component{ constructor(){
} async componentWillMount(){ await someMethod();
}
render(){
}
}
React的生命周期函數(shù)前面能加async嗎?
婷婷同學(xué)_
2018-10-23 22:12:34