Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网上做了一些研究,得到了一些相互矛盾的答案。这是我的情况:
我有一个引用 ClientViewModel 的 EditClient 视图,我有一个也引用 ClientViewModel 的 AddClient 视图。自然,编辑和添加操作不同,ViewModel 中的逻辑也有所不同。
拥有一个 EditViewModel 和一个 AddViewModel 并让它们各自的视图引用它们是否合适?这被认为是有效的 MVVM 结构吗?
谢谢!
是的,我每个视图都有一个 ViewModel。但是 ViewModel 当然可以使用相同的模型。