从 ASP.NET MVC 中的视图创建模型类
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能的?是的。
您当然可以将
翻译为
public int Price { get;放; }
但问题在于细节。
Possible? Yes.
You could certainly translate
<input type="text" data-format="int" name="Price" />
intopublic int Price { get; set; }
Devil is in the details though.