从ModelValidator获取操作信息

时间:2011-06-18 17:32:06

标签: asp.net asp.net-mvc-3 model-validation

我正在实现一个ModelValidator,它需要从执行操作中获取反射信息。验证行为将根据操作的装饰方式而改变。我能获得这些信息吗?

2 个答案:

答案 0 :(得分:1)

ModelValidator的构造函数应该采用ControllerContext。您可以使用该对象来确定控制器的装饰属性,如下所示:

context.Controller.GetType().GetCustomAttributes(typeof(YourAttribute), true).Length > 0

编辑:

您还可以获取所有属性的列表,如下所示:

attributes = context.Controller.GetType().GetCustomAttributes(true);

因此,一个基于特定属性进行验证的简单示例:

public class SampleValidator : ModelValidator {
    private ControllerContext _context { get; set; }

    public SampleValidator(ModelMetadata metadata, ControllerContext context, 
        string compareProperty, string errorMessage) : base(metadata, context) {
        _controllerContext = context;
    }

    public override IEnumerable<ModelValidationResult> Validate(object container) {
        if (_context.Controller.GetType().GetCustomAttributes(typeof(YourAttribute), true).Length > 0) {
            // do some custom validation
        }

        if (_context.Controller.GetType().GetCustomAttributes(typeof(AnotherAttribute), true).Length > 0) {
            // do something else
        }
    }
}

}

答案 1 :(得分:0)

反编译System.Web.Mvc后我得到了它:

protected override IEnumerable<ModelValidator> GetValidators(ModelMetadata metadata, ControllerContext context, IEnumerable<Attribute> attributes)
{
    ReflectedControllerDescriptor controllerDescriptor = new ReflectedControllerDescriptor(context.Controller.GetType());
    ReflectedActionDescriptor actionDescriptor = (ReflectedActionDescriptor) controllerDescriptor.FindAction(context, context.RouteData.GetRequiredString("action"));
    object[] actionAttributes = actionDescriptor.GetCustomAttributes(typeof(MyAttribute), true);
}