用于对对象进行版本控制的设计模式有哪些?

发布于 2024-07-14 01:54:33 字数 171 浏览 8 评论 0原文

有哪些设计模式可以在对象发生变化时保留其历史记录。 我不需要像事件源那样繁重的任务,只需能够在以下情况下保存过去的版本发生特定事件(在本例中是按下打印表单按钮时)。

What are some design patterns for keeping a history of an object as it changes. I don't need anything as heavy duty as event sourcing, just the ability to save past versions when a specific event happens (in this case when a print form button is pressed).

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

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

发布评论

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

评论(3

相思碎 2024-07-21 01:54:33

您可以查找纪念品模式

You could look for the memento pattern

萧瑟寒风 2024-07-21 01:54:33

这听起来与跟踪撤消信息同构。 通常的模式是命令模式的变体:按照先前状态的时间顺序保留一个队列,并执行恢复到先前状态的操作。

This sounds isomorphic to tracking undo information. The usual pattern for this is a variant of the Command pattern: you keep a queue in time order of previous states, with an operation to restore to the previous state.

我的鱼塘能养鲲 2024-07-21 01:54:33

我建议您看一下 Martin Fowler 的时间模式: http://www.martinfowler.com/eaaDev /timeNarrative.html

I suggest you have a look at Martin Fowler's temporal patterns: http://www.martinfowler.com/eaaDev/timeNarrative.html

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