【问题标题】:I am trying to run two await and a navigator.push in an async function, and i got this error in flutter我正在尝试在异步函数中运行两个 await 和一个 navigator.push,但我在颤动中遇到了这个错误
【发布时间】:2021-08-01 09:48:42
【问题描述】:

错误: [错误:flutter/lib/ui/ui_dart_state.cc(186)] 未处理的异常:查找已停用小部件的祖先是不安全的。 E/flutter (6342):此时小部件的元素树的状态不再稳定。 E/flutter (6342):要在其 dispose() 方法中安全地引用小部件的祖先,请通过在小部件的 didChangeDependencies() 方法中调用dependOnInheritedWidgetOfExactType() 来保存对祖先的引用。 E/颤振(6342):#0 Element._debugCheckStateIsActiveForAncestorLookup。 (包:flutter/src/widgets/framework.dart:3864:9) E/flutter (6342): #1 Element._debugCheckStateIsActiveForAncestorLookup (package:flutter/src/widgets/framework.dart:3878:6) E/flutter (6342): #2 Element.findAncestorStateOfType (package:flutter/src/widgets/framework.dart:3926:12) E/flutter (6342): #3 Navigator.of (package:flutter/src/widgets/navigator.dart:2706:40) E/flutter (6342): #4 Navigator.pop (package:flutter/src/widgets/navigator.dart:2592:15) E/flutter (6342): #5 NotificationDialog.checkAvailabilityOfRide (package:drivers_app/Notifications/notificationDialog.dart:240:20) E/颤振(6342):

我的代码片段:

 void checkAvailabilityOfRide(context) async {
    
      var rideRequestId = await rideRequestRef.once();
           ...
      var dataSnapShot2 =  await newRequestsRef.child(rideRequestId.value).once();
           ...
     Navigator.push(context, MaterialPageRoute(builder: (context)=> 
      NewRideScreen(rideDetails: rideDetails)));
         ...
   }

更新代码:

 Widget build(BuildContext context) {
 return Dialog(
  shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12.0)),
  backgroundColor: Colors.transparent,
  elevation: 1.0,
  child: Container(
    margin: EdgeInsets.all(5.0),
    width: double.infinity,
    decoration: BoxDecoration(
      color: Colors.white,
      borderRadius: BorderRadius.circular(5.0),
    ),
    child: Column(
      mainAxisSize: MainAxisSize.min,
      children: [
        SizedBox(height: 30.0),
        Image.asset("images/taxi.png", width: 120.0,),
        SizedBox(height: 18.0,),
        Text("New Ride Request", style: TextStyle(fontFamily: "Brand-Bold", fontSize: 18.0,),),
        SizedBox(height: 30.0),
        Padding(
          padding: EdgeInsets.all(18.0),
          child: Column(
            children: [

              Row(
                crossAxisAlignment: CrossAxisAlignment.start,
                children: [
                  Image.asset("images/pickicon.png", height: 16.0, width: 16.0,),
                  SizedBox(width: 20.0,),
                  Expanded(
                    child: Container(child: Text(rideDetails.pickup_address, style: TextStyle(fontSize: 18.0),)),
                  ),
                ],
              ),
              SizedBox(height: 15.0),

              Row(
                crossAxisAlignment: CrossAxisAlignment.start,
                children: [
                  Image.asset("images/desticon.png", height: 16.0, width: 16.0,),
                  SizedBox(width: 20.0,),
                  Expanded(
                    child: Container(child: Text(rideDetails.dropOff_address, style: TextStyle(fontSize: 18.0),)),
                  )
                ],
              ),
              SizedBox(height: 15.0),

            ],
          ),
        ),

        SizedBox(height: 20.0),
        Divider(height: 2.0,color: Colors.black, thickness: 2.0,),
        SizedBox(height: 8.0),

        Padding(
          padding: EdgeInsets.all(20.0),
          child: Row(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [

              FlatButton(
                shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(18.0),
                    side: BorderSide(color: Colors.red)),
                color: Colors.white,
                textColor: Colors.red,
                padding: EdgeInsets.all(8.0),
                onPressed: ()
                {
                  assetsAudioPlayer.stop();
                  Navigator.pop(context);
                },
                child: Text(
                  "Cancel".toUpperCase(),
                  style: TextStyle(
                    fontSize: 14.0,
                  ),
                ),
              ),

              SizedBox(width: 25.0),

              RaisedButton(
                shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(18.0),
                    side: BorderSide(color: Colors.green)),
                onPressed: ()
                {
                  assetsAudioPlayer.stop();
                  checkAvailabilityOfRide0(context);
                  checkAvailabilityOfRide(context);
                },

                color: Colors.green,
                textColor: Colors.white,
                child: Text("Accept".toUpperCase(),
                    style: TextStyle(fontSize: 14)),
              ),

            ],
          ),
        ),

        SizedBox(height: 10.0),
      ],
    ),
  ),
);

}

Future<void> checkAvailabilityOfRide(context) async {
   var rideRequestId = await rideRequestRef.once();
   Navigator.push(context);
   String theRideId = "";
   var dataSnapShot2 =  await newRequestsRef.child( rideRequestId.value).once();
   /*... process...*/

   if(theRideId == rideDetails.ride_request_id && r2canShare) {
   rideRequestRef.set("accepted");
   AssistantMethods.disableHomeTabLiveLocationUpdates();
   Navigator.push(context, MaterialPageRoute(builder: (context) => 
   NewRideScreen(rideDetails: rideDetails)));
 }
   else if(theRideId == 'cancelled') {
   displayToastMessage("Ride has been Cancelled.", context);
   }
   else if(theRideId == 'cancelled') {
   displayToastMessage("Ride has been time out.", context);
   }
   else if(r2canShare == false) {
   assetsAudioPlayer.stop();
   displayToastMessage("Rider 2 cannot shared ride, out of range.", context);
   }
   else {
   displayToastMessage("Ride not exists.", context);
   }

}

修改后的代码:

  void checkAvailabilityOfRide(context)async{
    var dataSnapShot2 =  await newRequestsRef.child( (await 
      rideRequestRef.once()).value).once();
    Navigator.pop(context);
    String theRideId = "";
    /*... process...*/

【问题讨论】:

  • 还是同样的错误,....查找已停用小部件的祖先是不安全的。
  • 请显示您调用此函数的上下文,提供足够的代码来重现问题。
  • @PatrickO'Hara 请看我添加的代码
  • 编辑没有显示调用函数的上下文,即调用它的Widget

标签: flutter asynchronous async-await navigator


【解决方案1】:

正如发帖者发现的那样(请参阅有关问题的 cmets),错误是由在 Navigator.popNavigator.push 之间执行异步 await 引起的。我猜await 让 Flutter 有时间在push 之前销毁当前屏幕,这会导致push 出现异常。

请注意,Flutter 提供了多种同时弹出和推送的方式,从而避免了有干预代码的机会:pushReplacementpushReplacementNamed 将当前屏幕替换为新屏幕,popAndPushNamed 也是如此有不同的动画。

【讨论】:

  • 感谢您的建议,感谢您为解决我的问题所做的努力,希望您以后能帮助我更多??
【解决方案2】:

@Nin Yu,过去几天我遇到了同样的错误,我尝试使用@Patrick 答案修复,但有时也不起作用。当我仔细调试它时,我发现我多次调用包含 Navigator 的方法。所以有时我得到了上下文,我安全地传递到下一个屏幕,有些它会抛出一个错误。我会建议调试方法并检查它是否发生。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2020-10-11
    • 1970-01-01
    • 1970-01-01
    • 2023-03-03
    • 1970-01-01
    • 1970-01-01
    • 2022-11-26
    • 2020-03-15
    相关资源
    最近更新 更多