[PYTHON] [Hinweis] Wo haben Sie Async verwendet?

Einführung

Ich habe dies als Referenz verwendet.

Holen Sie sich Ihren aktuellen Standort, bevor Sie die App starten und das Widget erstellen

class _LoadingScreenState extends State<LoadingScreen> {
  @override
  void initState() {
    super.initState();
    // ---Hier verwendet---
    getLocation();
    // ------------------
  }

  void getLocation() async {
    Position position = await Geolocator().getCurrentPosition(
      desiredAccuracy: LocationAccuracy.low,
    );
    print(position);
  }

Ich habe das Warten vergessen und kann kein Widget erstellen

E/flutter (14324): This Overlay widget cannot be marked as needing to build because the framework is already in the process of building widgets. A widget can be marked as needing to be built during the build phase only if one of its ancestors is currently building. This exception is allowed because the framework builds parent widgets before children, which means a dirty descendant will always be built. Otherwise, the framework might not visit this widget during this build phase.

  void getLocationData() async {
    var weatherData =★ Warten ist hier erforderlich ★ WeatherModel().getLocationWeather();

    Navigator.push(context, MaterialPageRoute(builder: (context) {
      return LocationScreen(
        locationWeather: weatherData,
      );
    }));
  }

Der Versuch, beim Abrufen von Daten ein Widget zu erstellen, bedeutet, dass der Prozess versucht, unvollständige Daten (null) zu empfangen, und die Erstellung des Widgets fehlschlägt.

Recommended Posts

[Hinweis] Wo haben Sie Async verwendet?
Beachten Sie, was Sie getan haben, um Flycheck mit Python zu verwenden
Beachten Sie, bis Sie Emacs mit WSL verwenden
Wo kommen Sie her
[Kostenlos zu verwenden] 7 Lernseiten, auf denen Sie Python lernen können