const withLoading = Component => ({ isLoading, ...rest }) => isLoading ? <Loading /> : <Component { ...rest } />const ButtonWithLoading = withLoading(Button)render里:<ButtonWithLoading isLoading={false}> More</ButtonWithLoading>結(jié)果:頁(yè)面展示效果正常 但tools里有異常 詳見(jiàn)下圖
react 高階組件(HOC)返回的組件在react-developer tools 顯示
Qyouu
2019-03-06 10:12:08