Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
291 views
in Technique[技术] by (71.8m points)

react中怎么实现在一个组件展示时调用一个函数

有个tab栏要求在切换时重新请求数据 ,现在采用的是把子组件的this传递到父组件中进行调用,想问一下react有没有类似onShow的钩子函数,能在组件展示时调用的


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
  1. 把数据放到父组件,这样就能在tab-onChange的时候调用
  2. 用useRef拿到子组件的this,然后再调用

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...