提问人:guitarzero 提问时间:2/7/2016 最后编辑:Communityguitarzero 更新时间:2/10/2016 访问量:3052
在客户端使用 jquery 不显眼地验证 HttpPostedFileBase
Validating HttpPostedFileBase on client side with jquery unobtrusive
问:
我在我的网站上得到了jquery(原始的,验证的和不显眼的)。我已经扩展了一个在服务器端工作的验证属性,但我一生都无法让它在客户端工作。我错过了什么?
我的模型如下所示:
[Display(Name = "UploadFile"), DataType(DataType.Upload)]
[ValidateFile]
public IEnumerable<HttpPostedFileBase> MyImage { get; set; }
我已将此属性扩展添加到我的模型中:
public class ValidateFileAttribute : ValidationAttribute
{
public override bool IsValid(object value)
{
int MaxContentLength = 1024 * 1024 * 10; //10 MB
string[] AllowedFileExtensions = new string[] { ".jpg", ".gif", ".png", ".pdf" };
var files = value as IEnumerable<HttpPostedFileBase>;
foreach (var file in files)
{
if (file == null)
{
return false;
}
else if (!AllowedFileExtensions.Contains(file.FileName.Substring(file.FileName.LastIndexOf('.'))))
{
ErrorMessage = Resources.ResourcesAdvert.AdvertUploadFileExtensionErrorShorter + string.Join(", ", AllowedFileExtensions);
return false;
}
else if (file.ContentLength > MaxContentLength)
{
ErrorMessage = Resources.ResourcesAdvert.AdvertUploadFileTooBig + (MaxContentLength / 1024).ToString() + "MB";
return false;
}
else
{
return true;
}
}
return false;
}
}
我有一个这样的观点:
@Html.LabelFor(x => x.MyImage)
<input type="file" name="MyImage[0]" id="MyImage1" />
<input type="file" name="MyImage[1]" id="MyImage2" />
<input type="file" name="MyImage[2]" id="MyImage3" />
@Html.ValidationMessageFor(x => x.MyImage)
我的控制器工作正常,如果图像有效,它可以上传图像。我该如何进行的任何想法?
编辑:我也尝试过使用它,但这对我的客户端也不起作用,我无法自定义错误消息。
答:
0赞
guitarzero
2/10/2016
#1
由于没有答案,我将分享一些信息,以防其他人遇到与我相同的问题。
我最终通过点击 Muecke 提供的链接(这里)解决了@Stephen问题。我的问题是没有正确配置 javascript,因为我不明白将每个变量放在哪里。
评论
FileTypeAttribute