0

我正在开发一个 ASP.NET MVC Web 应用程序。在我的项目中,我正在对我的视图模型类使用数据注释进行远程验证。我知道默认远程属性不支持服务器验证。我可以在操作方法中再次验证它。但我不想这样做违反了关注点分离。所以我尝试创建自定义服务器客户端远程验证属性。我在网上找到了一个代码并使用了它。但是当发生服务器验证时它给了我错误。

这是我的自定义远程验证属性:

public class RemoteClientServerAttribute : RemoteAttribute
    {
        protected override ValidationResult IsValid(object value, ValidationContext validationContext)
        {
            // Get the controller using reflection
            Type controller = Assembly.GetExecutingAssembly().GetTypes()
                .FirstOrDefault(type => type.Name.ToLower() == string.Format("{0}Controller",
                    this.RouteData["controller"].ToString()).ToLower());
            if (controller != null)
            {
                // Get the action method that has validation logic
                MethodInfo action = controller.GetMethods()
                    .FirstOrDefault(method => method.Name.ToLower() ==
                        this.RouteData["action"].ToString().ToLower());
                if (action != null)
                {
                    // Create an instance of the controller class
                    object instance = Activator.CreateInstance(controller);
                    // Invoke the action method that has validation logic
                    object response = action.Invoke(instance, new object[] { value });
                    if (response is JsonResult)
                    {
                        object jsonData = ((JsonResult)response).Data;
                        if (jsonData is bool)
                        {
                            return (bool)jsonData ? ValidationResult.Success :
                                new ValidationResult(this.ErrorMessage);
                        }
                    }
                }
            }

            return ValidationResult.Success;
            // If you want the validation to fail, create an instance of ValidationResult
            // return new ValidationResult(base.ErrorMessageString);
        }

        public RemoteClientServerAttribute(string routeName)
            : base(routeName)
        {
        }

        public RemoteClientServerAttribute(string action, string controller)
            : base(action, controller)
        {
        }

        public RemoteClientServerAttribute(string action, string controller,
            string areaName)
            : base(action, controller, areaName)
        {
        }
    }

这是我的模型:

public class CreateCategoryVM
    {
        [Required]
        [MaxLength(50)]
        [RemoteClientServer("IsNameUnique","Category",ErrorMessage="Name is already taken")]
        public string Name { get; set; }
    }

我试过这个也添加区域名称:

[RemoteClientServer("IsNameUnique","Category","Admin",ErrorMessage="Name is already taken")]
            public string Name { get; set; }

这是我的远程验证操作方法:

public JsonResult IsNameUnique(string Name)
            {
                IEnumerable<Category> categories = categoryRepo.Categories.Where(x => x.Name.Trim() == Name);

            Category category = categories.FirstOrDefault();
            return Json(category==null, JsonRequestBehavior.AllowGet);
        }

但是当我运行代码创建时,如果名称已经被使用,客户端验证工作正常。但是,当我使用尚不存在的不同名称创建时,它会在服务器端给我错误。

这些是屏幕截图错误:

在此处输入图像描述

在此处输入图像描述

为什么会抛出这个错误?我的控制器在创建的新区域中。这是在处理那个吗?

4

0 回答 0