UI 状态改变时不更新

UI does not update on state change

我正在使用 React Native 地图 componentDidMount() 要求用户启用他们的位置。

componentDidMount() {
if (Platform.OS === 'android') {
  RNAndroidLocationEnabler.promptForEnableLocationIfNeeded({ interval: 20000, fastInterval: 5000 })
    .then(data => {
      console.log(data);

      this.findingLocation();
    }).catch(err => {
    });
}
else if (Platform.OS === 'ios') {
  this.findingLocation();
}

}

并且在 findingLocation() 中,我试图像这样获取用户的当前位置

 findingLocation = () => {
Geolocation.getCurrentPosition(
  position => {
    this.setState({
      region: {
        latitude: position.coords.latitude,
        longitude: position.coords.longitude,
        latitudeDelta: 0.0043,
        longitudeDelta: 0.0034,
      }
    }, () => {
      console.warn(this.state.region);
    });
  },
  error => console.warn('Error', JSON.stringify(error)),
  { enableHighAccuracy: true, timeout: 20000, maximumAge: 10000 },
);

}

在控制台中,我正在获取当前位置的经纬度。 但它有时不反映UI。

UI代码

<MapView
      provider={PROVIDER_GOOGLE}
      style={styles.map}
      region={this.state.region}
      onRegionChangeComplete={this.onRegionChange}
      zoomEnabled={true}
      showsUserLocation={true}
      zoomControlEnabled={true}
      showsMyLocationButton={true}
    />

我使用的库 https://github.com/react-native-community/react-native-maps for MAP & https://www.npmjs.com/package/@react-native-community/geolocation 用于 GEOLOCATION。

请帮帮我。 我哪里错了。 提前致谢。

在 setState 函数中使用扩展运算符。至于为什么,看这篇文章:https://medium.com/pro-react/a-brief-talk-about-immutability-and-react-s-helpers-70919ab8ae7c

this.setState(prevState => ({
  region: {
    ...prevState.region
    latitude: position.coords.latitude,
    longitude: position.coords.longitude,
    latitudeDelta: 0.0043,
    longitudeDelta: 0.0034,
  }
}), () => {
  console.warn(this.state.region);
})