- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是 MVVM 模式和 Caliburn.Micro 的新手。我已经阅读了一些关于如何入门的教程,但我对 Caliburn 上下文中 MVVM 的 Model
部分感到困惑。
我想创建我的第一个 MVVM 应用程序并且我有一些设计问题:
我应该如何保留对一个复杂模型的多个实例的引用?对于前。 cumtomers(客户模型类的实例)
是否有可能在多个模型类中操作一个模型类查看模型?我应该如何存储我的模型引用,所以它会从不同的 ViewModel 可见?
对于更复杂的模型操作/文件,我应该把我的代码放在哪里,数据库存储?我应该如何调用这样的代码?我不是在这里问关于 SQLConnections,但 MVVM 最佳实践。 :)
在此先感谢您的帮助:)
编辑:-------------------------------------------- ----------
谢谢你的回答。我更清楚地理解了这个主题,但我仍然对一些细节感到困惑。
举个例子,让我们假设这个小应用程序。我有一个允许我添加新客户的表格。它有几个字段,如姓名、姓氏等。按下按钮后,我在 ViewModel 中调用 addCustomer 命令。我希望我的程序将新创建的客户存储在数据库中。
我的 View 还有 List 控件(随便什么),它将我的客户显示为原始字符串(例如“姓名:John,姓氏:Doe,地址:...”我知道这样做很愚蠢,但我需要一个模型操作的例子(比如 .toString()))
对于这个例子,我创建了一堆东西来说明我对该过程的看法:
我考虑了 2 种适合解决方案的方法:
哪个更好?或者另一种更适合 MVVM 的方法?
另一个问题是:我应该把从数据库中加载所有客户的方法放在哪里,这样他们才能显示在列表中?在 View 模型或模型类中的“get 方法”中?
最佳答案
In tutorials, the Model was presented as simple property in ViewModel. How should I manage more complex models? Is there any naming convention? Obviously, there should be some external classes made for my models, but how should I communicate between my models and the view?
您的模型应该代表他们需要的任何东西,无论是客户、帐户等。 View 模型的工作是处理 View 和模型之间的交互。
How should I keep references to many instances of one complex model? For ex. cumtomers (instances of Customer model class)
通常,您会将复杂的模型映射到更友好的格式以进行显示,您可以手动完成,也可以使用 AutoMapper 等工具。
Is there a possibility to manipulate one model class in many ViewModels? How should I store my model reference, so it'll be visible from different ViewModels?
如果您使用的是本地数据库,则可以传递 ID。如果它是一项服务,您可以在本地保留模型以供其他 View 模型使用。您还可以将单例 ISharedData 注入(inject)到需要使用共享数据的 View 模型中。
Where should I put my code for more complex model manupulation/file, database storage? How should I invoke such code? I'm not asking here about SQLConnections, but MVVM best practices. :)
为更复杂的模型操作/业务逻辑创建服务。将服务注入(inject)到需要它们的 View 模型中。 ICustomerService、IAccountService 等
编辑:-------------------------------------------- ----------
您的第一种方法是正确的。关于共享模型的观点是一个严重的问题,因为保存方法绑定(bind)到 View 模型类。 View 模型将有一个 SaveCustomerCommand
,当按钮被点击时,由于它的绑定(bind),它被触发。
SaveCustomerCommand
将保留 CustomerModel
,无论 CustomerModel
是如何保留的。因此,如果它是一个数据库,则 View 模型可能具有对上下文的引用并发出 _db.Save(CustomerModel)
。如果另一个 View 模型需要操作一个 CustomerModel
,它将通过使用上下文来实现。 View 模型还可以引用一个 CustomerService
来处理 CustomerModel
的 crud。
这可能是这样的:
public class AddCustomerViewModel : Screen
{
private readonly ICustomerService _customerService;
public AddCustomerViewModel(ICustomerService customerService)
{
_customerService = customerService;
}
//If button is named x:Name="SaveCustomer" CM will
//bind it by convention to this method
public void SaveCustomer(Customer customer)
{
_customerService.Save(customer);
}
}
public class CustomerListViewModel : Screen
{
private readonly ICustomerService _customerService;
private List<CustomerDisplayModel> _customers;
public CustomerListViewModel(ICustomerService customerService)
{
_customerService = customerService;
}
public List<CustomerDisplayModel> Customers
{
get { return _customers; }
set
{
_customers = value;
NotifyOfPropertyChange();
}
}
//only fires once, unlike OnActivate()
protected override void OnInitialize()
{
var customers = _customerService.LoadAllCustomers();
//could just use the model but this shows how one might map from
//the domain model to a display model, AutoMapper could be used for this
Customers = customers.Select(c => new CustomerDisplayModel(c)).ToList();
}
}
public interface ICustomerService
{
List<Customer> LoadAllCustomers();
void Save(Customer customer);
}
//same as button, Label named x:Name="CustomerName" will bind
// to CustomerName
public class CustomerDisplayModel
{
private readonly Customer _customer;
public CustomerDisplayModel(Customer customer)
{
_customer = customer;
}
public string CustomerName
{
get { return _customer.Name; }
set { _customer.Name = value; }
}
public string Surname
{
get { return _customer.Surname; }
set { _customer.Surname = value; }
}
public string Address
{
get { return _customer.Address; }
set { _customer.Address = value; }
}
}
public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public string Address { get; set; }
}
关于c# - 如何在 Caliburn.Micro 中编码/设计模型部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31032639/
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
.NET 框架:4.5.1 我在 Blend for visual studio 2015 中遇到一个奇怪的错误,我找不到它的来源。 如果我在 VS 中打开我的 WPF 解决方案,它会加载并运行良好。
我经常遇到这样的问题,与 Hierarchical RESTful URL design 非常相似 假设该服务仅提供用户上传文档。 POST, GET /accounts PUT, DELETE /a
在 Rails 应用程序中,我使用 devise 来管理我的用户,而我用来销毁 session 的链接不再有效。它正在工作,现在我添加了事件管理员,但没有。 我的链接是 :delete, :clas
我已经坚持了超过 24 小时,试图按照此处发布的其他解决方案进行操作,但我无法使其正常工作。我是 Rails 新手,需要帮助! 我想让我的/users/edit 页面正常工作,以便我可以简单地更改用户
Devise 在以下情况下不会使用户超时: 用户登录,关闭选项卡,然后在超时 + X 分钟内重新访问该 URL。用户仍处于登录状态。 如果选项卡已打开并且稍后刷新/单击,则超时可以正常工作。这意味着
我想使用这样的 slider 我希望该 slider 根据提供给它的值进行相应调整。到目前为止,我只能应用具有渐变效果的背景,但无法获得这种效果。请通过提供样式代码来帮助我。
您应该为每种方法创建一个请求/响应对象,还是应该为每个服务创建一个? 如果我在所有方法中使用它,我的服务请求对象中将只有 5 个不同的东西,因为我对几乎所有方法使用相同的输入。 响应对象将只有一个字典
我正在尝试在 REST 中对实体的附件进行建模。假设一个缺陷实体可以附加多个附件。每个附件都有描述和一些其他属性(上次修改时间、文件大小...)。附件本身是任何格式的文件(jpeg、doc ...)
我有以下表格: Blogs { BlogName } BlogPosts { BlogName, PostTitle } 博客文章同时建模一个实体和一个关系,根据 6nf(根据第三个宣言)这是无效的。
如果 A 类与 B、C 和 D 类中的每一个都有唯一的交互,那么交互的代码应该在 A 中还是在 B、C 和 D 中? 我正在编写一个小游戏,其中许多对象可以与其他对象进行独特的交互。例如,EMP点击
关于如何记住我与 Omniauth 一起工作似乎有些困惑。 根据这个wiki ,您需要在 OmniauthCallbacksController 中包含以下内容: remember_me(user)
设计问题: 使用 非线程安全 组件(集合,API,...)在/带有 多线程成分 ... 例子 : 组件 1 :多线程套接字服务器谁向消息处理程序发送消息... 组件 2 :非线程安全 消息处理程序 谁
我们目前正在设计一个 RESTful 应用程序。我们决定使用 XML 作为我们的基本表示。 我有以下关于在 XML 中设计/建模应用程序数据的问题。 在 XML 中进行数据建模的方法有哪些?从头开始然
我正在设计一个新的 XSD 来从业务合作伙伴那里获取积分信息。对于每笔交易,合作伙伴必须提供至少一种积分类型的积分值。我有以下几点:
设计支持多个版本的 API 的最佳方法是什么。我如何确保即使我的数据架构发生更改(微小更改),我的 api 的使用者也不会受到影响?任何引用架构、指南都非常有用。 最佳答案 Mark Nottingh
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 4 年前。 Improv
我想用 php 创建一个网站,其工作方式与 https://www.bitcoins.lc/ 相同。确实,就每个页面上具有相同布局但内容会随着您更改链接/页面而改变而言,我如何在 php 中使用lay
我有一个关于编写 Swing UI 的问题。如果我想制作一个带有某些选项的软件,例如在第一个框架上,我有三个按钮(新建、选项、退出)。 现在,如果用户单击新按钮,我想将框架中的整个内容更改为其他内容。
我正在尝试找出并学习将应用程序拥有的一堆Docker容器移至Kubernetes的模式和最佳实践。诸如Pod设计,服务,部署之类的东西。例如,我可以创建一个其中包含单个Web和应用程序容器的Pod,但
我是一名优秀的程序员,十分优秀!