删除[必需]属性MVC 5后,“必需”验证消息仍然存在

时间:2016-05-10 22:07:00

标签: c# asp.net-mvc validation asp.net-mvc-5

我的一个视图模型的属性中有一个[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; }

知道为什么会这样吗?

1 个答案:

答案 0 :(得分:7)

这是因为您的QuoteQuantityint,目前不是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