MVC不验证空字符串

时间:2013-07-07 10:42:08

标签: c# asp.net-mvc razor

我有razor文件,我用字符串文本框定义html表单:

    @using (Html.BeginForm()) {
        @Html.ValidationSummary(true)
        <fieldset>
        <legend>Product</legend>

        <div class="editor-label">
            @Html.LabelFor(model => model.Name)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.Name)
            @Html.ValidationMessageFor(model => model.Name)
        </div>
        <p>
            <input type="submit" value="Create" />
        </p>
        </fieldset>
     }

问题是,我希望这个字段(model.name)不可为空,但是剃刀验证允许字符串为空,当我将空字符串添加到模型时它会给出错误。 任何建议如何简单地验证这个字符串不再是空的?

3 个答案:

答案 0 :(得分:21)

您可能需要设置DataAnnotation属性

  

[必需(AllowEmptyStrings = false)]

在您要应用验证的属性顶部。
这里看这个问题 RequiredAttribute with AllowEmptyString=true in ASP.NET MVC 3 unobtrusive validation

类似的问题,或多或少在这里。
How to convert TextBoxes with null values to empty strings

希望你能够解决你的问题

答案 1 :(得分:5)

你的viewmodel是什么样的?

您可以在视图模型中的DataAnnotation媒体资源中添加Name属性:

public class MyViewModel
{
    [Required(ErrorMessage="This field can not be empty.")]
    public string Name { get; set; }
}

然后,在您的控制器中,您可以检查发布的模型是否有效。

public ActionResult MyAction(ViewModel model)
{
    if (ModelState.IsValid)
    {
        //ok
    }
    else
    {
        //not ok
    }
}

答案 2 :(得分:0)

对我有用的是
使用以下行不接受空字符串
[必需(AllowEmptyStrings =否)]
那个不允许空格的地方
[RegularExpression(@“。 \ S +。”,ErrorMessage =“不允许空白”)]