为了账号安全,请及时绑定邮箱和手机立即绑定

Xamarin.Forms PopModalAsync:未观察到任务的异常

Xamarin.Forms PopModalAsync:未观察到任务的异常

C#
梵蒂冈之花 2023-09-16 17:34:13
我有以下代码:System.Threading.Tasks.Task appointmentEndTask = App.ArdaBusinessLogic.AppointmentEnd(_appointment);System.Threading.Tasks.Task appointmentEndCompletedTask = appointmentEndTask.ContinueWith(    async task =>    {        _appointmentDetailPage.IsDirty = true;        await App.MasterNavigationPage.Navigation.PopModalAsync();    },     System.Threading.CancellationToken.None,     System.Threading.Tasks.TaskContinuationOptions.OnlyOnRanToCompletion,     System.Threading.Tasks.TaskScheduler.FromCurrentSynchronizationContext());System.Threading.Tasks.Task appointmentEndFaultedTask = appointmentEndTask.ContinueWith(    async task =>    {        await App.MasterNavigationPage.Navigation.PopModalAsync();        await App.ShowErrorPageAsync(task.Exception);    },     System.Threading.CancellationToken.None,     System.Threading.Tasks.TaskContinuationOptions.OnlyOnFaulted,     System.Threading.Tasks.TaskScheduler.FromCurrentSynchronizationContext());因此,如果“AppointmentEnd”任务完成,则应关闭当前模态页面。有时(并非总是!)我在崩溃日志中收到以下错误。在本例中,第 139 行是“_appointmentDetailPage.IsDirty = true”之后的“await App.MasterNavigationPage.Navigation.PopModalAsync()”。不幸的是,我不明白为什么会出现这个错误。你能帮助我吗?
查看完整描述

1 回答

?
慕斯709654

TA贡献1840条经验 获得超5个赞

首先,为什么要使用如此复杂的语法而不是利用异步等待?


public async void EndAppointement()

{

    try 

    {

        await App.ArdaBusinessLogic.AppointmentEnd(_appointment);

        _appointmentDetailPage.IsDirty = true;

        await App.MasterNavigationPage.Navigation.PopModalAsync();

    }

    catch (Exception exception)

    {

        await App.MasterNavigationPage.Navigation.PopModalAsync();

        await App.ShowErrorPageAsync(exception);

    }

}

二、看XF源码:


protected override async Task<Page> OnPopModal(bool animated)

{

    Page modal = ModalStack[ModalStack.Count - 1];

    if (_owner.OnModalPopping(modal))

    {

        _owner.OnPopCanceled();

        return null;

    }

    Page result = await base.OnPopModal(animated);

    result.Parent = null;

    _owner.OnModalPopped(result);

    return result;

}

您的模态堆栈似乎混乱了:这意味着您正在尝试弹出不在堆栈上的页面。您确定您处于模态页面吗?也许使用PopAsync而不是PopModalAsync.


查看完整回答
反对 回复 2023-09-16
  • 1 回答
  • 0 关注
  • 65 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信