我有一个页面,我将命令绑定到按钮。当我点击它时,我调用了一个方法,我从API中获取了我想要的数据。如果我不想只在视图中绑定数据,还要在代码后面使用这些数据?! 让我们说这是我的观点:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="HelloWorld.Pages.JohnDoePage"
xmlns:local="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms.Pages"
<StackLayout Padding="20, 10"
HorizontalOptions="Center">
<Button Command="{Binding JohnDoe}"
Text="Data about John Doe" />
</StackLayout>
</ContentPage>
代码behihnd:
Models.Info info;
Models.Data data;
public JohnDoePage(Models.Info info)
{
InitializeComponent();
vm1 = new BranchesDetailsViewModel(info);
BindingContext = vm1;
this.info = info;
//this is what I tried
var data = vm1.Dataa;
var label = data.Adres;
var label1 = new Label { Text = label, FontSize = 15, TextColor = Color.FromHex("#231f20"), HorizontalOptions = LayoutOptions.Center, HorizontalTextAlignment = TextAlignment.Center };
stackB.Children.Add(label); /****/this code always breaks here. I guess because data.adress is null because the button it's not clicked so the comand it is not called****
// i want to use the data here after I click the button
//using the data after I click the button
}
视图模型:
Data _data;
public Data Data
{
get { return _data; }
set
{
if (value == _data) return;
_data = value;
OnPropertyChanged();
}
}
public ICommand JohnDoe
{
get
{
return new Command(async () =>
{
var Dataa = await _apiServices.InfoAboutJohnDOe();
});
}
}
我获得所需数据的服务还可以。我使用相同的viewmodel来绑定不同的命令,我不知道这是否可行,所以我卡住了。
我尝试了它看起来是错的,因为我的应用程序破解了。我认为这是因为data.adress
为空,因为在页面加载时没有单击按钮。我知道之前我问了一个类似的问题,我以为我得到了答案,但这不是正确的,所以很抱歉。
任何想法我该如何处理这个问题?在此先感谢!!