如何修改视图模型以仅检查特定属性的验证?

问题描述 投票:-1回答:3

我有一个问题,我已经将两个模型传递到视图模型。在特定视图中,我只想检查两个属性的验证,一个来自视图模型中的每个模型。

但是,两个模型都包含其他属性,每个属性都有自己的数据注释,这意味着即使表单上没有所有注释,表单也不会提交。

因此,我需要找到一种方法来仅检查两个模型中特定属性的验证,但如果它通过验证检查,仍然将整个对象保存到数据库。

代码示例

楷模

public class FirstModel
{
    public int Id { get; set; }
    [Required]
    public string Prop2 { get; set; }
    [Required]
    public DateTime Prop3 { get; set; }
}

public class SecondModel
{
    public int Id { get; set; }
    [Required]
    public string Prop2 { get; set; }
    [Required]
    public int Prop3 { get; set; }
}

public class ThirdModel
{
    public int Id { get; set; }

    [Required]
    public FirstModel FirstModel { get; set; }
    [Required]
    public SecondModel SecondModel { get; set; }
}

查看模型

public class ThirdFormViewModel
{
    // maybe I can do something here?
    public FirstModel FirstModel { get; set; }
    public SecondModel SecondModel { get; set; }
}

控制器发布行动

[HttpPost]
public ActionResult CreateThirdModel(ThirdModel newThirdModel)
{
    var firstModel = _context.FirstModels.Single(c => c.Id == newThirdModel.Id);

    var secondModel = _context.SecondModels.Single(c => c.Id == newThirdModel.SecondModel.Id);

    if (!ModelState.IsValid)
    {
        var viewModel = new ThirdFormViewModel
        {
            FirstModel = firstModel,
            SecondModel = secondModel
        };
        return View("ThirdModelForm", viewModel);

    }

    var thirdModel = new ThirdModel
    {
        FirstModel = firstModel,
        SecondModel = secondModel,
    };

    _context.ThirdModels.Add(thirdModel);
    _context.SaveChanges();

    return RedirectToAction("Index");
}

视图

@model MyProject.ViewModels.ThirdFormViewModel

@using (Html.BeginForm()
{
    <div class="form-group">
        @Html.TextBoxFor(m => m.FirstModel.Prop2)
    </div>
    <div class="form-group">
        @Html.TextBoxFor(m => m.SecondModel.Prop3)
    </div>
    <button type="submit" class="btn btn-primary">Save</button>
}
c# asp.net asp.net-mvc viewmodel
3个回答
0
投票

如果是我,我会创建多个视图模型,而不是直接传递对象,这样你就可以更好地控制你为这样的场景做些什么。我通常尝试为所有传递的数据创建视图模型。看起来你必须映射很多实体,但这会让实体模型变得杂乱无章。您可以控制从View中验证所需的任何内容,因为DTO对象未在其他任何位置共享。您可以将数据注释保留在Entity对象中以用于Entity Framework。

有时您可能希望在视图模型上创建一个对象,但不在Entity或类似的东西中。

如果您的对象很大,您可以使用AutoMapper帮助映射对象,以减少您的工作量。

查看模型

public class FirstViewModel
{
    public int Id { get; set; }
    public string Prop2 { get; set; }
    public DateTime Prop3 { get; set; }
}

public class SecondViewModel
{
    public int Id { get; set; }
    public string Prop2 { get; set; }
    public int Prop3 { get; set; }
}

public class ThirdFormViewModel
{
    public FirstViewModel FirstModel { get; set; }
    public SeconViewdModel SecondModel { get; set; }
}

0
投票

您可以使用ModelState.Remove删除要验证的属性。

由于您的第三个视图模型包含其他两个模型的属性,因此属性名称应该像FirstModel.Prop2,这可以通过ModelState.Values在调试器中进一步检查

例:

ModelState.Remove("FirstModel.Prop2");
ModelState.Remove("SecondModel.Prop2"); 

0
投票

你可以删除ModelState.IsValid检查并自己验证数据。如果您只需要验证2个属性,那看起来就像更简单的方法

© www.soinside.com 2019 - 2024. All rights reserved.