|
.NET中特性+反射 实现数据校验
在.NET中,我们可以使用特性+反射来实现数据校验。特性是一种用于为程序中的代码添加元数据的机制。元数据是与程序中的代码相关联的数据,但不直接成为代码的一部分。通过特性,我们可以为类、方法、属性等添加额外的信息,这些信息可以在运行时通过反射获取和使用。
对反射不太熟悉的小伙伴可以去看我以前的文章 .NET中的反射
为了实现数据校验,我们可以定义一个自定义特性,并将其应用于需要校验的属性或参数上。然后,我们可以编写代码来检查这些特性,并根据特性的配置执行相应的校验逻辑。
示例代码
定义自定义特性
- using System;
- using System.ComponentModel.DataAnnotations;
- [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
- public class ValidationAttribute : Attribute
- {
- public string ErrorMessage { get; set; }
-
- public ValidationAttribute(string errorMessage)
- {
- ErrorMessage = errorMessage;
- }
- }
复制代码 定义具体的校验特性
- [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
- public class RequiredAttribute : ValidationAttribute
- {
- public RequiredAttribute() : base("该字段是必填项。") { }
- }
-
- [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
- public class RangeAttribute : ValidationAttribute
- {
- public int Minimum { get; set; }
- public int Maximum { get; set; }
-
- public RangeAttribute(int minimum, int maximum, string errorMessage = "该字段的值必须在 {0} 和 {1} 之间。")
- : base(errorMessage)
- {
- Minimum = minimum;
- Maximum = maximum;
- }
- }
复制代码 在模型类中使用这些特性
- public class Person
- {
- [Required]
- public string Name { get; set; }
-
- [Range(18, 100, ErrorMessage = "年龄必须在 18 到 100 之间。")]
- public int Age { get; set; }
- }
复制代码 编写验证方法
- public class Validator
- {
- public static bool Validate<T>(T obj, out string errorMessage)
- {
- errorMessage = null;
- var type = typeof(T);
- var properties = type.GetProperties();
-
- foreach (var property in properties)
- {
- var validationAttributes = property.GetCustomAttributes(typeof(ValidationAttribute), true);
-
- foreach (var attribute in validationAttributes)
- {
- var value = property.GetValue(obj);
-
- switch (attribute)
- {
- case RequiredAttribute required:
- if (value == null || (value is string str && string.IsNullOrWhiteSpace(str)))
- {
- errorMessage = required.ErrorMessage;
- return false;
- }
- break;
- case RangeAttribute range:
- if (value is IComparable comparable)
- {
- if (comparable.CompareTo(range.Minimum) < 0 || comparable.CompareTo(range.Maximum) > 0)
- {
- errorMessage = string.Format(range.ErrorMessage, range.Minimum, range.Maximum);
- return false;
- }
- }
- break;
- // 可以添加更多校验特性类型
- }
- }
- }
-
- return true;
- }
- }
复制代码 使用Validator类来校验Person对象
- class Program
- {
- static void Main(string[] args)
- {
- var person = new Person { Name = "张三", Age = 15 };
- string errorMessage;
- bool isValid = Validator.Validate(person, out errorMessage);
- if (!isValid)
- {
- Console.WriteLine(errorMessage); // 输出:该字段是必填项。
- }
- Console.ReadLine();
- }
- }
复制代码 说明
这个示例演示了如何使用特性和反射实现基本的数据校验。在实际应用中,你可能需要处理更复杂的校验逻辑和更多的校验类型。
此外,还可以使用现有的数据特性(如System.ComponentModel.DataAnnotations命名空间中的特性)来简化校验过程。
以下是该命名空间中一些常用的特性(Attribute),以及它们的用途:
[table][tr]特性名称用途[/tr][tr][td][Required][/td][td]确保属性值不为空(不为 null 且对于字符串不是空字符串)。[/td][/tr][tr][td][StringLength][/td][td]限制字符串属性的最大长度。[/td][/tr][tr][td][Range][/td][td]确保数值型属性在指定的范围内。[/td][/tr][tr][td][Minimum][/td][td]确保数值型属性不小于指定的最小值。[/td][/tr][tr][td][Maximum][/td][td]确保数值型属性不大于指定的最大值。[/td][/tr][tr][td][RegularExpression][/td][td]通过正则表达式验证属性值的格式。[/td][/tr][tr][td][EmailAddress][/td][td]验证属性值是否为有效的电子邮件地址。[/td][/tr][tr][td]https://www.cnblogs.com/cqai/p/1 ... com/cqai/p/18203814
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
|