无需数据库的 MVC2 验证
我们可以在没有数据库的情况下仅使用模型来显示 MVC2 验证吗?
Can we show MVC2 validation without database, just having the Model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们可以在没有数据库的情况下仅使用模型来显示 MVC2 验证吗?
Can we show MVC2 validation without database, just having the Model?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
是的。您只需 添加手动将数据注释添加到您的模型中。无需数据库。
Yes. You just have to add the Data Annotations by hand to your Model. No database required.
您可以在您的项目中使用数据注释模型属性,例如:
如果字段为空或超过最大长度,则模型绑定器会将错误添加到模型中。
另一种选择是您手动添加错误,
这将返回到用户提交的视图,并在具有所提供 ID 的字段旁边显示“错误答案”错误。
You could use Data Annotations in your model properties, such as:
The model binder would then add the erros to the model if the field is empty or exceeds the maxlength.
Another option is for you to add your errors manually
this will get back to the view the user submitted, and will show the "Wrong Answer" error next to the field that has the provided Id.
是的,您不需要数据库。这是一个示例
在您创建或编辑视图时,该视图将被强制键入此类,验证将正常工作。
yes you do not need a database. here is an example of it
On you create or edit view which will be strogly typed to this class, the validation will work fine.