复杂对象所需的属性

发布于 2024-10-27 11:16:58 字数 335 浏览 3 评论 0原文

我有一个这样的类

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明天过后 2024-11-03 11:16:58

验证属性由模型绑定器根据值提供者(通常发布的表单字段)提供的数据进行评估。如果您发布的表单不包含该字段,活页夹将不会触及模型的该属性,因此不会评估验证属性。

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.

浸婚纱 2024-11-03 11:16:58

我认为asp.net mvc中没有递归验证支持

I think there is no recursive validation support in asp.net mvc

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文