1


大家好!

我在模型验证方面有点菜鸟,我一直在尝试使用 IValidatableObject 接口验证 Articles 对象和上传的文件,但没有成功。

下面这个类很好地验证了 Articles 对象,但我看不到 HttpPostedFileBase 是如何被注入以允许我对其进行验证的。这甚至可以使用这种方法实现吗?

我用来提交数据的表单包含 enctype = multipart/form-data 属性,因此它知道它的发布文件。

这是我试图验证的完整课程。这真的让我陷入困境,任何帮助将不胜感激。

public class ArticlesModel : IValidatableObject
{
    public Article Article { get; set; }
    public IEnumerable<Category> Categories { get; set; }
    public HttpPostedFileBase PostedFile { get; set; }

    public ArticlesModel(){}

    public ArticlesModel(Article article, IEnumerable<Category> categories)
    {
        this.Article = article;
        this.Categories = categories;
    }

    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    {
        if (Article.CategoryID == 0)
        {
            yield return new ValidationResult("Please select a category.", new[] { "Article.Category"});
        }

        if (Article.Title == null)
        {
            yield return new ValidationResult("Please enter a title.", new[] { "Article.Title" });
        }

        if (Article.Content == null)
        {
            yield return new ValidationResult("Please enter some content.", new[] { "Article.Content" });
        }


        if (PostedFile == null)
        {
            yield return new ValidationResult("Please upload a file.", new[] { "Article.ImageFile" });
        }
        else
        {
            if (PostedFile.ContentLength > 1 * 1024 * 1024)
            {
                yield return new ValidationResult("Please upload a file 1Mb or less.", new[] { "Article.ImageFile" });
            }

            //Other file checking logic here please!!
        }
    }
}
4

0 回答 0