第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Xamarin.Forms PopModalAsync:未觀察到任務(wù)的異常

Xamarin.Forms PopModalAsync:未觀察到任務(wù)的異常

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”任務(wù)完成,則應(yīng)關(guān)閉當(dāng)前模態(tài)頁(yè)面。有時(shí)(并非總是?。┪以诒罎⑷罩局惺盏揭韵洛e(cuò)誤。在本例中,第 139 行是“_appointmentDetailPage.IsDirty = true”之后的“await App.MasterNavigationPage.Navigation.PopModalAsync()”。不幸的是,我不明白為什么會(huì)出現(xiàn)這個(gè)錯(cuò)誤。你能幫助我嗎?
查看完整描述

1 回答

?
慕斯709654

TA貢獻(xiàn)1840條經(jīng)驗(yàn) 獲得超5個(gè)贊

首先,為什么要使用如此復(fù)雜的語(yǔ)法而不是利用異步等待?


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;

}

您的模態(tài)堆棧似乎混亂了:這意味著您正在嘗試彈出不在堆棧上的頁(yè)面。您確定您處于模態(tài)頁(yè)面嗎?也許使用PopAsync而不是PopModalAsync.


查看完整回答
反對(duì) 回復(fù) 2023-09-16
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)