如何在 asp.net mvc 2 中进行整数模型验证
我有一张注册表,用户必须输入他们房屋的面积。我希望这个值只是一个整数。有没有办法使用属性 asp.net mvc 验证该值?
I have a registration form and the user must enter the square footage of their house. I would like this value to be only an integer. Is there a way to validate this value using attributes asp.net mvc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
意识到这个问题已经得到了回答,但 Stefanvds 的答案过于复杂。只需使用 MVC 内置的验证属性:
Realise this has already been answered, but Stefanvds' answer is uneccessarily complicated. Just use MVCs built in validation attributes:
是的,确实如此,但您必须制作要创建的对象的平面版本,因为属性验证仅在 MVC 将数据转换为模型后运行。当您的值为 int 时,如果用户未输入 int,则将无法验证,并且您将收到 MVC 错误消息而不是错误消息。
你可以发布你想要制作的对象吗?
对于平面版本,我的意思是所有日期时间和整数都是平面版本中的刺痛。
然后我使用这个:
在同一个文件中
,如果我的模型状态有效,那么我使用 AutoMapper 将我的 FlatModel 转换为我的模型,这只是 2 行代码。
编辑:如果 0 是有效数字:
yes, it is, but you will have to make a flat version of the object you are wanting to create, because the validation with attributes only runs AFTER MVC has converted your data into the model. which, when your value is an int, will fail to validate if the user did not enter an int, and you will get a MVC error message in stead of your errormessage.
can you post the object you are wanting to make?
with a flat version i mean all datetimes and ints are stings in the flat version.
then i use this:
in the same file
if my modelstate is valid then, i use AutoMapper to convert my FlatModel into my Model, which is just 2 lines of code.
edit: if 0 is a valid number:
我通常使用这样的 range 属性:
Positive int:
Negative int:
Any int:
I usually use the range attribute like this:
Positive int:
Negative int:
Any int: