3

我正在使用名为 MVC Foolproof Validation 的 MVC Validation nuget 包。

如果另一个模型属性为空,我将在我的模型上使用它来将 required 设置为 true。验证部分有效,因为当 Id 字段和 Location 字段为空时,ModelState 正确设置为无效。检查 ModelState 数组上的错误,我可以看到它的工作。

我的问题是客户端验证摘要不显示。这是我的设置方式。谁能发现我的问题?

    [DisplayName("Image Id")]
    public string Id{ get; set; }

    [DisplayName("Location Id")]
    [RequiredIfEmpty("Id", ErrorMessage = "You must..etc"]
    public string LocationId{ get; set; }

在我看来,我正在设置验证摘要和输入,如下所示

<div class="form-horizontal">
    <hr/>
    @Html.ValidationSummary(true, "", new {@class = "text-danger"})

    <div class="form-group">
        @Html.LabelFor(model => model.SearchCriteria.Id, htmlAttributes: new {@class = "control-label col-md-2"})
        <div class="col-md-10">
            @Html.EditorFor(model => model.SearchCriteria.Id, new {htmlAttributes = new {@class = "form-control"}})
            @Html.ValidationMessageFor(model => model.SearchCriteria.Id, "", new {@class = "text-danger"})
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.SearchCriteria.LocationId, htmlAttributes: new {@class = "control-label col-md-2"})
        <div class="col-md-10">
            @Html.EditorFor(model => model.SearchCriteria.LocationId, new {htmlAttributes = new {@class = "form-control"}})
            @Html.ValidationMessageFor(model => model.SearchCriteria.LocationId,"", new {@class = "text-danger"})
        </div>
    </div>

在我的控制器操作中,我正在检查模型状态。我需要调用 ModelState.AddModelError(..)。我已经尝试过了,但也许有一种方法我需要调用它。

    [HttpPost]
    public ActionResult Search(SearchCriteria searchCriteria)
    {
        var searchViewModel = new SearchViewModel
        {
            SearchCriteria = searchCriteria
        };

        if (ModelState.IsValid)
        {
            ...
        }
        //ModelState.AddModelError("LocationId", "test");
        return View(searchViewModel);
    }
4

3 回答 3

3

将 ValidationSummary 辅助行中的布尔参数 (excludePropertyErrors) 更改为false

@Html.ValidationSummary(false, "", new {@class = "text-danger"})

请参阅https://msdn.microsoft.com/de-de/library/ee839464(v=vs.118).aspx

于 2017-08-14T13:56:29.877 回答
1

就我而言,我解决了从“ModelOnly”更改为“All”的问题:

从:

<div asp-validation-summary="ModelOnly" class="text-danger"></div>

至:

<div asp-validation-summary="All" class="text-danger"></div>
于 2020-01-14T19:21:36.600 回答
0

我的问题是我对我的行动的呼吁是通过 ajax 完成的。我真的应该指定,在这里提供帮助的人会立即诊断出问题。当模型状态无效时,我正在返回一个新视图(searchViewModel),但我必须更新它以返回 json 中的错误。

    [HttpPost]
    public ActionResult Search(SearchCriteria searchCriteria)
    {
        if (ModelState.IsValid)
        {
            var searchResults = _searchProvider.GetData(searchCriteria);

            return Json(new
            {
                searchResults
            }, JsonRequestBehavior.AllowGet);
        }

        string errorMessages = string.Join(" <br /> ", this.ModelState.Values
            .SelectMany(v => v.Errors)
            .Select(e => e.ErrorMessage));

        return this.Json(new { HasError = true, ErrorMessages = errorMessages });
    }
于 2017-08-15T16:35:36.923 回答