将componentDidUpdate(prevProps)重写成一个钩子

问题描述 投票:0回答:1

我想把这个生命周期的metod重写成一个钩子:

componentDidUpdate(prevProps) {
  if (this.props.lng !== prevProps.lng && this.props.lat !== prevProps.lat) {
    this.map.setView(new L.LatLng(this.props.lat, this.props.lng), 6);
  } else if (this.props.mapTheme !== prevProps.mapTheme) {
    this.setMapTheme(this.props.mapTheme);
  }
}

我知道使用useEffect钩子但找不到一个好的例子。

javascript reactjs hook
1个回答
1
投票
useEffect(() => {
  this.map.setView(new L.LatLng(this.props.lat, this.props.lng), 6);
}, [this.props.lng, this.props.lat]);

useEffect(() => {
  this.setMapTheme(this.props.mapTheme);
}, [this.props.mapTheme]);
© www.soinside.com 2019 - 2024. All rights reserved.