MVC - 为 UI 生成的额外数据存储在哪里?

发布于 2024-10-25 23:32:23 字数 213 浏览 2 评论 0原文

我们正在构建一个 Silverlight 应用程序并使用 PureMVC,但技术和框架对于这个问题可能并不那么重要。

我们有一个包含网格的视图,并且该网格绑定到模型。但是,我们希望向用户显示额外的数据列,但这些数据是派生的而不是存储在模型中。

MVC 中处理这个问题的最佳位置在哪里?

任何帮助或建议将不胜感激!

非常感谢,

鲍比

We are building a Silverlight app and using PureMVC but the technology and framework probably aren't that important to this question.

We have a view that contains a grid and that grid is bound to a model. However, we have additional columns of data that we would like to display for the user but the data is derived and not stored in the model.

Where is the best place within MVC to handle this?

Any help or suggestions would greatly be appreciated!

Thanks a lot,

Bobby

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

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

发布评论

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

评论(2

笨笨の傻瓜 2024-11-01 23:32:24

从“模式”方法来看,不要更改您的模型(除非您的模型已经被用作 ViewModel。在这种情况下实现特定的视图模型。视图模型应该具有视图逻辑(附加列、特定于模型布局的代码、等)普通模型不应该。

From a 'patterns' approach, do not change your model (unless your model already is purposed as a ViewModel. Implement a specific view model in this case. A view model should have view logic (additional columns, code specific to the model layout, etc) a plain model should not.

意中人 2024-11-01 23:32:23

向模型对象添加附加列的属性,然后在其属性获取中连接它们背后的逻辑,并将它们作为附加列绑定到网格。

Add properties to your model object for the additional columns then wire up the logic behind them in their property gets and bind them to the grid as additional columns.

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