1

我编写自己的属性来验证 ASP.NET MVC 中的模型:

public class ValidateImage : RequiredAttribute, IClientValidatable
{
    public override bool IsValid(object value)
    {
        // validate object
    }
}

我以这种方式使用这些属性:

public class MyModel
{
    [ValidateImage]
    public HttpPostedFileBase file { get; set; }
}

现在,我想让它在控制器中工作,我将此属性添加到属性中,而不是模型中:

public ActionResult EmployeePhoto(string id, [ValidateImage] HttpPostedFileBase file)
{
    if(ModelState.IsValid)
    {
    }
}

但是我的属性永远不会被执行。如何在不使用模型的情况下在控制器中进行验证?

4

1 回答 1

2

这是不支持的。只需编写一个视图模型来包装动作的所有参数:

public ActionResult EmployeePhoto(EmployeePhotoViewModel model)
{
    if (ModelState.IsValid)
    {
    }
}

这可能看起来像这样:

public class EmployeePhotoViewModel 
{
    public string Id { get; set; }

    [ValidateImage]
    public HttpPostedFileBase File { get; set; }
}
于 2013-05-28T07:24:20.920 回答