我想将此生命周期方法重写为一个钩子:
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挂钩,但是找不到一个很好的例子。
答案 0 :(得分: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]);