ModelState.IsValid == false,为什么?

在哪里可以找到导致ModelState无效的错误列表?我没有在ModelState对象上看到任何错误属性。

回答:

关于“可能是0错误和IsValid ==

false”:这是来自https://github.com/Microsoft/referencesource/blob/master/System.Web/ModelBinding/ModelStateDictionary.cs#L37-L41的MVC源代码

public bool IsValid {

get {

return Values.All(modelState => modelState.Errors.Count == 0);

}

}

现在,看起来不可能。好吧,那是针对ASP.NET MVC v1的。

以上是 ModelState.IsValid == false,为什么? 的全部内容, 来源链接: utcz.com/qa/409622.html

回到顶部