gpt4 book ai didi

asp.net-mvc - 如何在资源文件中使用 RegularExpression DataAnnotation

转载 作者:行者123 更新时间:2023-12-05 02:25:11 28 4
gpt4 key购买 nike

我目前正在使用 MVC 1.0 和 .NET 3.5。我正在使用 DataAnnotations 来验证我的模型。我正在尝试添加使用 RegularExpression 来验证邮政编码。我已将正则表达式存储在资源文件中,因为当我尝试以下操作时,许多模型都会使用它:

[RegularExpression(Resources.RegexPostcode, ErrorMessage="Postcode format invalid")]
public string Postcode { get; set; }

构建时出现以下错误:

An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type.

有没有什么方法可以将资源文件中的值用作正则表达式,或者我是否需要将实际的正则表达式字符串输入到每个具有邮政编码的模型中?

谢谢

最佳答案

我建议制作您自己的 ValidationAttribute。这会将正则表达式和错误消息保留在一个地方。

class PostcodeAttribute : RegularExpressionAttribute
{
public PostcodeAttribute() : base("your regex")
{
this.ErrorMessage = "Postcode format invalid";
}
}

关于asp.net-mvc - 如何在资源文件中使用 RegularExpression DataAnnotation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2523579/

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