4

我需要byte[]在我的模型中验证 aRequired但是每当我使用Data Annotation [Required]它时,它什么都不会做。即使我选择一个文件,它也会输出错误消息。

细节:

模型:

Public class MyClass
{
   [Key]
   public int ID {get; set;}

   [Required]
   public string Name {get; set;}

   public byte[] Image {get; set;}

   [Required]
   public byte[] Template {get; set;}
}

看法:

<div class="editor-label">
   <%:Html.LabelFor(model => model.Image) %>
</div>
<div class="editor-field">
   <input type="file" id="file1" name="files" />
</div>
<div class="editor-label">
   <%:Html.Label("Template") %>
</div>
<div class="editor-field"> 
   <input type="file" id="file2" name="files"/>
</div>
<p>
   <input type="submit" value="Create" />
</p>

我查看了帖子并注意到人们使用自定义验证,但他们使用HttpPostedFileBase文件类型而不是byte[]像我一样,由于某种原因,当我尝试使用相同的它时,它会出错,并且缺少 ID ......即使模型声明了自己的 ID。

编辑:

上下文 -OnModelCreating补充Report

modelBuilder.Entity<Report>().Property(p => p.Image).HasColumnType("image");
modelBuilder.Entity<Report>().Property(p => p.Template).HasColumnType("image");

请注意,由于错误,我不得不输入imageas 。ColumnTypeByte array truncation to a length of 4000.

控制器:

public ActionResult Create(Report report, IEnumerable<HttpPostedFileBase> files)
    {

        if (ModelState.IsValid)
        {
            db.Configuration.ValidateOnSaveEnabled = false;

            if (files.ElementAt(0) != null && files.ElementAt(0).ContentLength > 0)
            {
                using (MemoryStream ms = new MemoryStream())
                {
                    files.ElementAt(0).InputStream.CopyTo(ms);
                    report.Image = ms.GetBuffer();
                }
            }

            if (files.ElementAt(1) != null && files.ElementAt(1).ContentLength > 0)
            {
                using (MemoryStream ms1 = new MemoryStream())
                {
                    files.ElementAt(1).InputStream.CopyTo(ms1);
                    report.Template = ms1.GetBuffer();
                }

            }
            db.Reports.Add(report);
            db.SaveChanges();

            //Temporary save method
            var tempID = 10000000 + report.ReportID;
            var fileName = tempID.ToString(); //current by-pass for name
            var path = Path.Combine(Server.MapPath("~/Content/Report/"), fileName);
            files.ElementAt(1).SaveAs(path);

            db.Configuration.ValidateOnSaveEnabled = true;
            return RedirectToAction("Index");
        }

希望你能注意到我错过了什么。

4

3 回答 3

5

RequiredAttribute检查 null 和空字符串。

public override bool IsValid(object value)
{
  if (value == null)
    return false;
  string str = value as string;
  if (str != null && !this.AllowEmptyStrings)
    return str.Trim().Length != 0;
  else
    return true;
}

如果您的字节数组为空,这可以正常工作,但您可能还想检查一个空数组(没有看到您如何分配Template属性的值,我只能猜测是这种情况)。您可以定义自己的必需属性来为您执行此检查。

public class RequiredCollectionAttribute : RequiredAttribute
{
    public override bool IsValid(object value)
    {
      bool isValid = base.IsValid(value);

      if(isValid)
      {
        ICollection collection = value as ICollection;
        if(collection != null)
        {
            isValid = collection.Count != 0;
        }
      }  
      return isValid;
    }
}

现在只需用我们的新属性替换Required您的属性上的属性。TemplateRequiredCollection

[RequiredCollection]
public byte[] Template {get; set;}
于 2012-06-29T18:22:45.780 回答
0

我查看了帖子并注意到人们使用自定义验证,但他们使用 HttpPostedFileBase 作为文件类型,而不是像我这样的 byte[] ..

您想将发布的文件绑定到模型中的字节数组吗?如果是,您必须使用自定义模型绑定器。

ASP.NET MVC 已经有一个用于字节数组的内置模型绑定器,因此您可以按照本文中建议轻松扩展它。

public class CustomFileModelBinder : ByteArrayModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var file = controllerContext.HttpContext.Request.Files[bindingContext.ModelName];
 
        if (file != null)
        {
            if (file.ContentLength != 0 && !String.IsNullOrEmpty(file.FileName))
            {
                var fileBytes = new byte[file.ContentLength];
                file.InputStream.Read(fileBytes, 0, fileBytes.Length);
                return fileBytes;
            }
 
            return null;
        }
 
        return base.BindModel(controllerContext, bindingContext);
    }
}

protected void Application_Start()
{
    ...
    ModelBinders.Binders.Remove(typeof(byte[]));
    ModelBinders.Binders.Add(typeof(byte[]), new CustomFileModelBinder());
}

现在上传的文件将直接作为 bytearray 出现在属性中。

于 2012-06-30T05:12:46.203 回答
0

我改变了我的Create方法,这就是我想出的。似乎工作正常,但是...

if (files.ElementAt(1) != null && files.ElementAt(1).ContentLength > 0)
{
    using (MemoryStream ms1 = new MemoryStream())
    {
        files.ElementAt(1).InputStream.CopyTo(ms1);
        report.Template = ms1.GetBuffer();
    }

}
else // this part of code did the trick, although not sure how good it is in practice
{
    return View(report);
}
于 2012-07-04T20:21:31.567 回答