我们可以在 MVVM 模式的 UI 层使用领域模型吗

发布于 2024-12-07 16:18:26 字数 50 浏览 0 评论 0原文

我可以在 UI 层使用域模型而不是某些视图中的视图模型吗?如果否,为什么我不应该使用?

Can I use domain model at UI layer instead of view model in some of the views. If No. Why shouldn't I use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

窝囊感情。 2024-12-14 16:18:26

如果您将列表中的某些模型对象公开给 ItemsSource,我认为这完全没问题。我通常采用仅在 ViewModel 中包装这样的模型的方法:

  1. 我需要对属性进行自定义格式化,这在 ViewModel 中看起来比使用 IValueConverter 更清晰
  2. 我需要在

我不会的 对象上放置一个方法/ICommand但是,如果模型以某种方式绑定到视图而不是 ItemsSource(例如 Window 或 UserControl)中,则不要这样做。如果您发现 ViewModel 没有太多属性或方法/ICommand,那么您需要将多个 ViewModel 合并到一个 ViewModel 中。

If you are exposing some model objects in a list to an ItemsSource, I think this completely fine. I generally take the approach to only wrap a model such as this in a ViewModel when:

  1. I need custom formatting of a property that seems cleaner to do in a ViewModel than using IValueConverter
  2. I need to put a method/ICommand on the object

I wouldn't do it if the models are somehow bound to a View not in an ItemsSource such as a Window or UserControl, however. If you are finding you have ViewModels that don't have very many properties or methods/ICommand, then you need to merge several into the one ViewModel.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文