是否可以通过双向验证在单个视图上处理多个表? ASP.NET MVC
我上面有一个问题。
我想要做的是,如果表格设计是固定的,则条目表格是自动生成的。 并且客户端和服务器端验证都是有效的。 我的形象就像“Force.com”。
为此,我认为我不能使用 DataAnnotations。因为在运行之前,表设计是不固定的,我无法定义任何模型。 因此,如果您有任何想法来实现它,请告诉我。
我知道这是一个反常的问题,我尝试在不使用 MVC 中的模型的情况下解决这个问题。 但我需要你的帮助。谢谢。
I have a question above.
What I want to do is, if a table design is fixed, the entry form is auto generated.
And both client-side and server-side validations are valid.
My image is like the "Force.com".
In order to do so, I think I can't use DataAnnotations. Because before runtime, a table design is not fixed and I can't define any models.
So, if you have any idea to realize it, please let me know.
I understand it's a perverse question, which I try to do without using models in MVC.
But I need your help. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为唯一的方法是你可以在客户端使用JQuery Validation,并在服务器端制作自己的验证代码。
I think the only way is that you can use the JQuery Validation in client-side, and make the own validation code in server-side.