从 ViewModel 调用方法导致 System.NullReferenceException

Calling method from ViewModel cause System.NullReferenceException

提问人:Dean Thomas 提问时间:12/2/2020 更新时间:2/17/2021 访问量:172

问:

我是 Xamarin.Forms 的新手,我正在开发一个跨平台应用。在应用程序中,用户需要登录 Facebook 和 Twitter 才能参加某些特定活动。所以我在设置页面设置了静态登录功能,并加入了活动页面。我需要检查登录是否成功,并在用户每次打开设置页面时在页面上显示用户名。因此,我决定在 OnAppearing 方法的代码隐藏中调用 checking 方法。但它将调用 NullReferenceException。如果我只是从检查方法中移动了整个代码,则设置页面上没有任何变化。

这是我背后的代码:

    public SettingAct()
    {
        InitializeComponent();
    }

    protected override void OnAppearing()
    {
        (BindingContext as SettingViewModel).CekLogin();
    }

我的 ViewModel 上的检查方法:

    internal void CekLogin()
    {
        Console.WriteLine("LoginCheck");
        if (SessionManager.FacebookLogin())
        {
            FacebookName = SessionManager.FacebookName();
            FbImage = "fb_sett_active.png";
            Console.WriteLine("Facebook logged in");
        }
        else
        {
            FacebookName = "Facebook";
            FbImage = "fb_sett.png";
            Console.WriteLine("Facebook not logged in");
        }

        if (SessionManager.TwitterLogin())
        {
            TwitterName = SessionManager.TwitterName();
            TwitImage = "twitter_sett_active.png";
            Console.WriteLine("Twitter logged in");
        }
        else
        {
            TwitterName = "Twitter";
            TwitImage = "twitter_sett.png";
            Console.WriteLine("Twitter not logged in");
        }
    }

我对为什么它不起作用感到困惑,因为我在我的主页上做同样的事情,每次出现主页时我都会刷新用户点。

   (BindingContext as MainViewModel).RefreshKuliahLogPoint();

请在评论中告诉我您需要的任何详细信息,我希望即使我的英语不好,您也能理解我的问题。

Xamarin Xamarin.Forms MVVM 跨平台 NullReferenceException

评论

1赞 Lucas Zhang 12/2/2020
您是否设置了隐藏的代码或 xaml ?BindingContext
0赞 Dean Thomas 12/3/2020
在我的 xaml 中,ContentPage.BindingContext 标记。
0赞 Lucas Zhang 12/4/2020
你能把样本分享到 github 上,以便我可以在我这边测试它吗?

答:

1赞 Cristover Wurangian 12/2/2020 #1

BindingContext 属性将返回 null,直到您实际将其设置为某个值。

public SettingAct()
{
    InitializeComponent();
    BindingContext = new SettingViewModel();
}

protected override void OnAppearing()
{
    (BindingContext as SettingViewModel).CekLogin();
}

评论

0赞 Dean Thomas 12/4/2020
我在 XAML 文件中设置了 BindingContext。不好吗?顺便说一句,你的代码中有两个分号。编辑:实施您的建议后,我仍然收到 NullReferenceException(错误:在 290 处的 OnAfterSave 中捕获异常),但我的代码仍然可以工作。可以吗?