gpt4 book ai didi

asp.net-mvc-3 - 有什么方法可以强制在 MVC3 Controller 中重新验证模型?

转载 作者:行者123 更新时间:2023-12-04 06:08:17 26 4
gpt4 key购买 nike

我有一个模型,其中包含两次地址和人员,一次用于“主要”联系人,一次用于“发票”联系人,以及一个名为 InvoiceContactSameAsMain 的 bool 值 - 一个笨拙的名称,但具有描述性。该属性的 getter 检查“main”和“invoice”的 Address 和 Contact 对象是否相同,如果相同则返回 true。 setter 检查该值是否为真,如果是,则将主要 Person 复制到发票 Person 上,并将主要地址复制到发票地址上。

在我看来, bool 值由一个复选框表示(如您所料)。附带一个小的 JS 函数,如果选中该复选框,它会隐藏发票字段并通过将 data-val HTML 属性设置为 false 并强制重新解析不显眼的内容来“关闭”客户端验证表单中的验证属性。取消选中该框自然会显示字段并重新打开验证。

所有这一切都很好,直到我到达我的 Controller 。

尽管模型是“有效的”并且包含正确的字段(感谢我的 InvoiceContactSameAsMain setter ),但 ModelState.IsValid 仍然是绝对错误的,而且我似乎找不到任何方法来重新验证模型。如果我清除 ModelState,所有错误都会消失。我宁愿避免按名称挖掘 ModelState 中的字段,因为 Person 和 Address 对象在整个项目中使用,并且可能需要在某些时候更改或扩展。

有什么我在这里错过的明显的东西可以让我重新验证 ModelState 吗?我尝试过 TryUpdateModel 和 TryValidateModel,但它们似乎都使用缓存的 ModelState 值。我什至尝试再次递归调用我的 Action,传入“固定”模型。我几乎很庆幸没有工作。

请让我知道是否有更多详细信息或示例会有所帮助。

编辑:显然,如果这完全是解决问题的错误方法,请告诉我。

编辑 2:根据 Ron Sijm 的建议添加了代码示例。

模型如下:
公开课详情
{
公共(public)诠释?用户 ID { 获取;放; }

    public Company Company { get; set; }

public Address CompanyAddress { get; set; }
public Person MainPerson { get; set; }

public Address InvoiceAddress { get; set; }
public Person InvoiceContact { get; set; }

[Display(Name = "Promotional code")]
[StringLength(20, ErrorMessage = "Promotional code should not exceed 20 characters")]
public string PromotionalCode { get; set; }

[Display(Name = "Invoice contact same as main")]
public bool InvoiceContactSameasMain
{
get { return InvoiceContact.Equals(MainPerson); }
set
{
if (value)
{
InvoiceContact = MainPerson.Copy();
InvoiceAddress = CompanyAddress.Copy();
}
}
}

[_Common.MustAccept]
[Display(Name = "I agree with the Privacy Policy")]
public bool PrivacyFlag { get; set; }

[Display(Name = "Please subscribe to Sodexo News Letter")]
public bool MarketingOption { get; set; }

[Display(Name = "Contract number")]
public int? ContractNumber { get; set; }

public Details()
{
Company = new Company();
CompanyAddress = new Address();
MainPerson = new Person();
InvoiceAddress = new Address();
InvoiceContact = new Person();
}
}

这包含在 ViewModel 中,因为页面中涉及许多 SelectList:
public class DetailsViewModel
{
public Details Details { get; set; }
public SelectList MainContactTitles { get; set; }
public SelectList InvoiceContactTitles { get; set; }
public SelectList SICCodes { get; set; }
public SelectList TypesOfBusiness { get; set; }
public SelectList NumbersOfEmployees { get; set; }

public DetailsViewModel()
{
}
}

Controller 的两个相关 Action 如下:
public class DetailsController : _ClientController
{
[Authorize]
public ActionResult Index()
{
DetailsViewModel viewModel = new DetailsViewModel();
if (Client == null)
{
viewModel.Details = DetailsFunctions.GetClient((int)UserId, null);
}
else
{
viewModel.Details = DetailsFunctions.GetClient((int)UserId, Client.ContractNumber);
}
viewModel.MainContactTitles = DetailsFunctions.GetTitles((int)UserId, viewModel.Details.MainPerson.title);
viewModel.InvoiceContactTitles = DetailsFunctions.GetTitles((int)UserId, viewModel.Details.InvoiceContact.title);
viewModel.SICCodes = DetailsFunctions.GetSICCodes(viewModel.Details.Company.sic_code);
viewModel.NumbersOfEmployees = DetailsFunctions.GetNumbersOfEmployees(viewModel.Details.Company.number_of_employees);
viewModel.TypesOfBusiness = DetailsFunctions.GetTypesOfBusiness(viewModel.Details.Company.public_private);
return View(viewModel);
}

[Authorize]
[HttpPost]
public ActionResult Index(DetailsViewModel ViewModel)
{
if (ModelState.IsValid)
{
//go to main page for now
DetailsFunctions.SetClient((int)UserId, ViewModel.Details);
return RedirectToAction("Index", "Home");
}
else
{
ViewModel.MainContactTitles = DetailsFunctions.GetTitles((int)UserId, ViewModel.Details.MainPerson.title);
ViewModel.InvoiceContactTitles = DetailsFunctions.GetTitles((int)UserId, ViewModel.Details.InvoiceContact.title);
ViewModel.SICCodes = DetailsFunctions.GetSICCodes(ViewModel.Details.Company.sic_code);
ViewModel.NumbersOfEmployees = DetailsFunctions.GetNumbersOfEmployees(ViewModel.Details.Company.number_of_employees);
ViewModel.TypesOfBusiness = DetailsFunctions.GetTypesOfBusiness(ViewModel.Details.Company.public_private);
return View(ViewModel);
}
}
}

如果需要,我可以提供 View 和 JS,但由于模型绑定(bind)一切正常,我不确定这有多大帮助。

最佳答案

这是一个中等程度的废话,但我最终只是在检查 ModelState.IsValid 之前清除了 Controller 中相关字段的 ModelState 错误:

if(ViewModel.Details.InvoiceContactSameasMain)
{
//iterate all ModelState values, grabbing the keys we want to clear errors from
foreach (string Key in ModelState.Keys)
{
if (Key.StartsWith("Details.InvoiceContact") || Key.Startwith("Details.InvoiceAddress"))
{
ModelState[Key].Errors.Clear();
}
}
}

唯一的好处是,如果 Person 或 Address 对象发生更改,则无需更改此代码。

关于asp.net-mvc-3 - 有什么方法可以强制在 MVC3 Controller 中重新验证模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8082290/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com