我按照此tutorial在HttpPostedFileBase
上创建验证,如果我使用HttpPostedFileBase
,则会有效,但如果我更改为IEnumerable<HttpPostedFileBase>
以上传多个文件,并提交表单ModelState.IsValid
始终为false。我上传了.png文件,大小为914字节。如何使用数据注释来验证多个文件上传?
我的模特
public class BillingViewModel
{
[Required]
public long BillingID { get; set; }
public IEnumerable<TimeKeeper> TimeKeepers { get; set; }
[Required]
[ValidateFile]
public IEnumerable<HttpPostedFileBase> PostedFiles { get; set; }
}
ValidateFile.cs:
public class ValidateFileAttribute : ValidationAttribute
{
public override bool IsValid(object value)
{
int MaxContentLength = 1024 * 1024 * 3; //3 MB
string[] AllowedFileExtensions = new string[] { ".jpg", ".gif", ".png", ".pdf" };
var file = value as HttpPostedFileBase;
if (file == null)
{
return false;
}
else if (!AllowedFileExtensions.Contains(file.FileName.Substring(file.FileName.LastIndexOf('.'))))
{
ErrorMessage = "Please upload Your Photo of type: " + string.Join(", ", AllowedFileExtensions);
return false;
}
else if (file.ContentLength > MaxContentLength)
{
ErrorMessage = "Your Photo is too large, maximum allowed size is : " + (MaxContentLength / 1024).ToString() + "MB";
return false;
}
else
{
return true;
}
}
}
答案 0 :(得分:2)
看起来你正在将属性转换为错误的类型。
改变这个:
var file = value as HttpPostedFileBase;
为:
var files = value as IEnumerable<HttpPostedFileBase>;
然后您可以遍历集合中的每个项目并验证每个文件的大小是否正确。
答案 1 :(得分:0)
你能做点什么吗
[Required]
public int? ListCount
{
get {return PostedFiles == null || PostedFiles.Count()==0? (int?)null: PostedFiles.Count();}
}
Catch:无法在客户端工作