0

嗨,我有这个自定义验证,但在要验证的属性类型上略有不同,即使我符合业务规则,ModelState 的值也始终是“null”=s ...这里有一些代码

模型

[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "image")]
        [ValidateFile(Allowed = new string[] { ".png", ".jpeg", ".jpg" },
                      MaxLength = 1024 * 1024 * 3,
                      ErrorMessage = "Please select a PNG , JPEG , JPG image smaller than 3MB")]
public byte[] Photo { get; set; }

===========

验证文件属性

public class ValidateFileAttribute : RequiredAttribute
{
    public int MaxLength { get; set; }
    public string[] Allowed { get; set; }

    public override bool IsValid(object **value**)
    {


        var Photo = value as HttpPostedFileBase;
        if (Photo == null)
        {
            return false;
        }

        if (Photo.ContentLength > MaxLength)
        {
            return false;
        }

        if (!Allowed.Contains(Photo.FileName.Substring(Photo.FileName.LastIndexOf('.'))))
        {
            return false;
        }

        return true;

    }

这里是值不应该为空的地方!!

创建.cshtml

@using (Html.BeginForm("Create", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.ValidationSummary(true)


    <fieldset>
        <legend>Restaurant</legend>

        <div class="editor-label">
            @Html.LabelFor(model => model.Name)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.Name)
            @Html.ValidationMessageFor(model => model.Name)
        </div>

        <div class="editor-label">
            @Html.LabelFor(model => model.City)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.City)
            @Html.ValidationMessageFor(model => model.City)
        </div>

        <div class="editor-label">
            @Html.LabelFor(model => model.Country)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.Country)
            @Html.ValidationMessageFor(model => model.Country)
        </div>

         <div class="editor-label">
            @Html.LabelFor(model=>model.Photo)
        </div>
      <div class="editor-field">
        @Html.EditorFor(model=>model.Photo)
        @Html.ValidationMessageFor(model => model.Photo)
        <input name="ImageFile" type="file" id="ImageFile"  />
      </div>
        <p>
            <input type="submit" value="Create"  />
        </p>

    </fieldset>
}

有什么帮助吗?

4

2 回答 2

0

您的财产:

public byte[] Photo { get; set; }

在属性中:

var Photo = value as HttpPostedFileBase;

这将始终为空。尝试:

var Photo = value as byte[]

当然,您必须修复验证逻辑的附加部分。

于 2013-06-21T05:56:08.580 回答
0

我会检查您在 byte[] Photo 中放置的内容,因为我注意到当输入的数据无效时,“对象值”为空。

例如,对于 int 数据类型,当我输入 2147483647 时,“对象值”确实包含 2147483647。

当我输入 2147483648 时,value 参数包含 0,因为最大的正整数值为 2147483647。

2013 年 7 月 5 日更新

您需要将数据类型更改为“HttpPostedFileBase”

公共 HttpPostedFileBase 照片 { 获取;放; }

而不是“字节[]”

公共字节[]照片{获取;放; }

应该没有必要

[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "image")]

您的

(对象**值**)

现在应该包含 System.Web.HttpPostedFileWrapper,其中包含要上传的文件。

这与我之前写的内容密切相关,如果传入的数据类型不是正确的类型,您将得到一个null 。

于 2013-07-01T15:24:23.340 回答