我的一个视图模型的属性中有一个[Required]
属性:
[DefaultValue(1)]
[Required(ErrorMessage = "* Required")] // this has now been removed
public int QuoteQuantity { get; set; }
我删除了[Required]
,但我仍然收到此验证消息,导致我无法提交。
在视图中我有以下几行:
@Html.EditorFor(model => model.QuoteQuantity, new { htmlAttributes = new { @class = "form-control", value = "1" } })
@Html.ValidationMessageFor(model => model.QuoteQuantity, "", new { @class = "text-danger" })
当我将其留空并提交时,我收到此验证错误:
QuoteQuantity字段是必需的。
我应该提一下,我已经重复构建了解决方案,关闭并重新打开VS,即使当前代码是这样,我仍然会收到此验证错误:
[DefaultValue(1)]
public int QuoteQuantity { get; set; }
知道为什么会这样吗?
答案 0 :(得分:7)
这是因为您的QuoteQuantity
是int
,目前不是Nullable
,所以当您尝试验证时,该字段不能为空,因为它不允许null
s。
绕过这两种方式:
QuoteQuantity
int设置为int?
(Nullable int
)或
string
的值,并在get
的{{1}}中使用QuoteQuantity
查看字符串是否可以转换为int.TryParse
int
。 您需要进行某种检查,但要查看它是否在您的最小/最大范围内 - 如果您有一个 示例强>:
第一个建议:
public int? QuoteQuantity { get; set; }
第二条建议: (如果字符串为空/ null或不是有效0
,则返回int
)
public int QuoteQuantity
{
get
{
int qty = 0;
if (!string.IsNullOrWhiteSpace(QuoteQuantityAsString))
{
int.TryParse(QuoteQuantityAsString, out qty);
}
return qty;
}
}
public string QuoteQuantityAsString { get; set; }
// You will then need to use the
// QuoteQuantityAsString property in your View, instead
我建议使用第一个选项,并确保null
检查您使用QuoteQuantity
的位置:)
希望这有帮助!
修改强>
在提供各种选择的公平性中,我只是想到了另一种方式(可能比建议2更好)。 无论哪种方式,我认为建议1仍然是最好的方式。
仅当用户 在您的"报价数量"中输入内容时才返回验证。视图上的字符串输入:
<强> 查看: 强>
在视图中,添加一个文本输入,允许用户输入数量(或不是,可能是这种情况)并使用它来代替当前的QuoteQuantity
元素
给它id
+ name
之类的quoteQty
像以前一样添加ValidationFor,但是将quoteQty
名称作为第一个参数
<强> 控制器: 强>
在您的控制器POST
方法中,接受string quoteQty
的另一个参数(以便它从您的视图中映射到与name
相同)。这将从您的HttpPost
在<{em>} (ModelState.IsValid)
检查之前,请尝试将quoteQty
解析为int
;如果没有,请为ModelError
添加quoteQty
,并附上消息
然后,您的模型将返回验证错误并根据需要显示在页面上。
下行是,这不能在客户端验证,因此服务器必须返回错误
像这样:
public ActionResult SendQuote(Model yourmodel,
string quoteQty)
{
if (!string.IsNullOrWhiteSpace(quoteQty))
{
if (!int.TryParse(quoteQty, out yourmodel.QuoteQuantity))
{
// If the TryParse fails and returns false
// Add a model error. Element name, then message.
ModelState.AddModelError("quoteQty",
"Whoops!");
}
}
...
// Then do your ModelState.IsValid check and other stuffs
}
只需使用原始属性
public int QuoteQuantity { get; set; }
在你的模型中。 如果您从未设置,int
的默认值为0
。如果TryParse
失败,则会将值设置为0