复杂对象所需的属性
我有一个这样的类
public class PageReference {
[ScaffoldColumn(false)]
public string Id { get; set; }
public string Name { get; set; }
}
,在我的模型中,我像这样使用它,
[Required]
public PageReference PageLink { get; set; }
如果我将其添加到 pagelink 属性,则 required 属性不会触发,如何解决这个问题?
I have a class like this
public class PageReference {
[ScaffoldColumn(false)]
public string Id { get; set; }
public string Name { get; set; }
}
and in my model I use it like this
[Required]
public PageReference PageLink { get; set; }
the required attribute does not fire if I add it to the pagelink property, how can this be solved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
验证属性由模型绑定器根据值提供者(通常发布的表单字段)提供的数据进行评估。如果您发布的表单不包含该字段,活页夹将不会触及模型的该属性,因此不会评估验证属性。
The validation attribute is evaluated by the model binder against the data supplied by the value provider (often posted form fields). If you're posting a form that does not include that field, the binder won't touch that property of the model and so won't evaluate the validation attributes.
我认为asp.net mvc中没有递归验证支持
I think there is no recursive validation support in asp.net mvc