1

我需要在我的视图上上传文件。为了不弄乱 HttpPostedFileBase,而是为了能够使用字节数组进行模型绑定,我决定扩展 ByteArrayModelBinder 并实现它,以便它自动将 HttpPostFileBase 转换为 byte[]。我是这样做的:

public class CustomByteArrayModelBinder : ByteArrayModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            var file = controllerContext.HttpContext.Request.Files[bindingContext.ModelName];
     
            if (file != null)
            {
                if (file.ContentLength > 0)
                {
                    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 CustomByteArrayModelBinder());
    }

完成上述操作后,我应该能够拥有这样的 ViewModel:

    public class Profile
{
    public string Name {get; set;}
    public int Age{get; set;}
    public byte[] photo{get; set;}
}

在视图中,我创建了相应的 html 元素,如下所示:

@using (Html.BeginForm(null,null,FormMethod.Post,new { enctype = "multipart/form-data" })){
.........    
@Html.TextBoxFor(x=>x.photo,new{type="file"})
<input type="submit" valaue="Save">
}

但是当我提交表单时,我收到以下错误:

The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters.

事实上,这不是我的想法,我按照此链接中的指南进行操作。不知道该怎么做,因为执行在这一行停止:

 return base.BindModel(controllerContext, bindingContext);

有什么想法该怎么做?

编辑:控制器动作方法:

 [HttpPost]
 public ActionResult Save(Profile profile){
     if(ModelIsValid){
        context.SaveProfile(profile);
     }
 }

但是连动作方法都达不到。问题发生在操作方法之前。

4

1 回答 1

1

有时在转换 base64 时,+ 和 / 字符会更改为 - 和 _。所以你必须将它们替换为:

string converted = base64String.Replace('-', '+');
converted = converted.Replace('_', '/');

在您的BindModel类中。

于 2014-07-22T04:37:30.453 回答