gpt4 book ai didi

c# - MVC2 验证模型也没有属性的验证属性

转载 作者:太空宇宙 更新时间:2023-11-03 20:39:49 25 4
gpt4 key购买 nike

我有一个模型:

public class OverdraftForm
{
public string CustomerId { get; set; }
public PaymentType PaymentType { get; set; }

public OverdraftType Type { get; set; }

public decimal PermanentAmount { get; set; }
public int ExpirationPeriod { get; set; }

public decimal OnetimeAmount { get; set; }
public DateTime ExpirationDate { get; set; }
public CreditType CreditType { get; set; }
public string Comment { get; set; }
}

我的 Action 是

public ActionResult CreateOverdraft(OverdraftForm form)
{
if (form.Type == OverdraftType.Permanent)
return CreatePermanentOverdraft(form);
return CreateOnetimeOverdraft(form);
}

重点是当我调试它时,即使在操作的第一行 ModelState.IsValid 是 false,它说 OnetimeAmount 应该有一个值。我正在使用 MVC2,我猜它的某些更改会导致此问题。

最佳答案

关于c# - MVC2 验证模型也没有属性的验证属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3494116/

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