MVVM中的WebService调用
本文关键字:调用 WebService 中的 MVVM | 更新日期: 2023-09-27 18:21:50
我正在使用MVVM Light Toolkit在WPF中开发简单的应用程序。我有两种观点:
- 主页视图(默认)
- 客户视图
这是MainViewModel类的一部分:
public MainViewModel()
{
CurrentViewModel = Bootstrapper.Instance.Container.Resolve<HomeViewModel>();
}
private void ExecuteShowCustomersCommand()
{
CurrentViewModel = Bootstrapper.Instance.Container.Resolve<CustomersViewModel>();
}
在CustomerViewModel中,我有属性:
public ObservableCollection<Customers> Customers
{
get { return _customers; }
set
{
if (_customers == value) return;
_customers = value;
RaisePropertyChanged(CustomersPropertyName);
}
}
我的问题是,我应该什么时候打电话给网络服务来获取客户数据?在CustomerViewModel构造函数中?
我会在视图模型的构造函数中执行此操作,并使用IoC容器来获取实例。
应用程序启动
SimpleIoc.Default.Register<IDataService, DataService>();
SimpleIoc.Default.Register<MyViewModel>();
ViewModel
public MyViewModel(IDataService DataService)
{
Mydata = DataService.GetData(); // Edit: Could also be done in a property with lazy load
}
定位器
public MyViewModel MyVM
{
get
{
return SimpleIoc.Default.GetInstance<MyViewModel>();
}
}