从 ASP.NET MVC 中的视图创建模型类

发布于 2024-10-18 21:44:15 字数 120 浏览 1 评论 0原文

在 ASP.NET MVC 中,我们可以创建强类型视图,但假设如果已经创建了视图,那么是否可以从中派生模型?

就像从视图创建模型一样。一种可能的情况是:设计人员创建视图(使用表单),然后开发人员从该表单创建模型

In ASP.NET MVC one can create strongly typed Views but suppose if a view has already been made, so would it be possible to derive a model from it?

Like create model from view. A possible scenario would be: a designer makes a view (with forms) and then the developer would create a model from that form

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

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

发布评论

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

评论(1

离笑几人歌 2024-10-25 21:44:15

可能的?是的。

您当然可以将 翻译为 public int Price { get;放; }

但问题在于细节。

Possible? Yes.

You could certainly translate <input type="text" data-format="int" name="Price" /> into public int Price { get; set; }

Devil is in the details though.

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