2

我本可以发誓这应该已经被回答了一百万次,但是在搜索了很长一段时间后我还是空了。

我有一个绑定到对象的视图。这个对象应该以某种方式附加一个图像(我没有任何首选方法)。我想验证图像文件。我已经看到了使用属性执行此操作的方法,例如:

public class ValidateFileAttribute : RequiredAttribute
{
    public override bool IsValid(object value)
    {
        var file = value as HttpPostedFileBase;
        if (file == null)
        {
            return false;
        }

        if (file.ContentLength > 1 * 1024 * 1024)
        {
            return false;
        }

        try
        {
            using (var img = Image.FromStream(file.InputStream))
            {
                return img.RawFormat.Equals(ImageFormat.Png);
            }
        }
        catch { }
        return false;
    }
}

但是,这需要模型中属性的 HttpPostedFileBase 类型:

public class MyViewModel
{
    [ValidateFile(ErrorMessage = "Please select a PNG image smaller than 1MB")]
    public HttpPostedFileBase File { get; set; }
}

这一切都很好,但我不能在 EF Code First 模型类中真正使用这种类型,因为它并不真正适合数据库存储。

那么最好的方法是什么?

4

2 回答 2

2

原来这是一个非常简单的解决方案。

public class MyViewModel
{
    [NotMapped, ValidateFile(ErrorMessage = "Please select a PNG image smaller than 1MB")]
    public HttpPostedFileBase File { get; set; }
}

我设置了 NotMapped 属性标签以防止它被保存在数据库中。然后在我的控制器中,我在我的对象模型中获得了 HttpPostedFileBase:

    public ActionResult Create(Product product)
    {
        if (!ModelState.IsValid)
        {
            return View(product);
        }
        // Save the file on filesystem and set the filepath in the object to be saved in the DB.
    }
于 2013-08-03T20:21:22.490 回答
-1

当我进一步开发网站时,我不可避免地开始使用 ViewModels。为每个视图创建一个模型绝对是要走的路。

于 2013-08-06T17:18:46.063 回答