133

HTMLHelper文件上传吗?具体来说,我正在寻找替换

<input type="file"/>

使用 ASP.NET MVC HTMLHelper。

或者,如果我使用

using (Html.BeginForm()) 

文件上传的 HTML 控件是什么?

4

8 回答 8

220

HTML 上传文件 ASP MVC 3.

模型:(请注意 FileExtensionsAttribute 在 MvcFutures 中可用。它将验证文件扩展名客户端和服务器端。

public class ViewModel
{
    [Required, Microsoft.Web.Mvc.FileExtensions(Extensions = "csv", 
             ErrorMessage = "Specify a CSV file. (Comma-separated values)")]
    public HttpPostedFileBase File { get; set; }
}

HTML 视图

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new 
                                       { enctype = "multipart/form-data" }))
{
    @Html.TextBoxFor(m => m.File, new { type = "file" })
    @Html.ValidationMessageFor(m => m.File)
}

控制器动作

[HttpPost]
public ActionResult Action(ViewModel model)
{
    if (ModelState.IsValid)
    {
        // Use your file here
        using (MemoryStream memoryStream = new MemoryStream())
        {
            model.File.InputStream.CopyTo(memoryStream);
        }
    }
}
于 2011-08-23T15:42:11.747 回答
21

您还可以使用:

@using (Html.BeginForm("Upload", "File", FormMethod.Post, new { enctype = "multipart/form-data" }))
{ 
    <p>
        <input type="file" id="fileUpload" name="fileUpload" size="23" />
    </p>
    <p>
        <input type="submit" value="Upload file" /></p> 
}
于 2011-06-14T19:17:45.663 回答
8

不久前我也有同样的问题,偶然发现了 Scott Hanselman 的一篇帖子:

使用 ASP.NET MVC 实现 HTTP 文件上传,包括测试和模拟

希望这可以帮助。

于 2008-11-20T10:34:42.550 回答
7

或者你可以正确地做到这一点:

在您的 HtmlHelper 扩展类中:

public static MvcHtmlString FileFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression)
    {
        return helper.FileFor(expression, null);
    }

public static MvcHtmlString FileFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes)
    {
        var builder = new TagBuilder("input");

        var id = helper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));
        builder.GenerateId(id);
        builder.MergeAttribute("name", id);
        builder.MergeAttribute("type", "file");

        builder.MergeAttributes(new RouteValueDictionary(htmlAttributes));

        // Render tag
        return MvcHtmlString.Create(builder.ToString(TagRenderMode.SelfClosing));
    }

这一行:

var id = helper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));

生成模型唯一的 id,你知道在列表和东西中。型号[0].名称等

在模型中创建正确的属性:

public HttpPostedFileBase NewFile { get; set; }

然后您需要确保您的表单将发送文件:

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { enctype = "multipart/form-data" }))

然后这是你的助手:

@Html.FileFor(x => x.NewFile)
于 2016-08-04T09:37:05.370 回答
4

Paulius Zaliaduonis 答案的改进版本:

为了使验证正常工作,我必须将模型更改为:

public class ViewModel
{
      public HttpPostedFileBase File { get; set; }

        [Required(ErrorMessage="A header image is required"), FileExtensions(ErrorMessage = "Please upload an image file.")]
        public string FileName
        {
            get
            {
                if (File != null)
                    return File.FileName;
                else
                    return String.Empty;
            }
        }
}

并认为:

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new 
                                       { enctype = "multipart/form-data" }))
{
    @Html.TextBoxFor(m => m.File, new { type = "file" })
    @Html.ValidationMessageFor(m => m.FileName)
}

这是必需的,因为@Serj Sagan 所写的有关 FileExtension 属性仅适用于字符串的内容。

于 2014-12-16T10:42:54.123 回答
2

要使用BeginForm,这是使用它的方法:

 using(Html.BeginForm("uploadfiles", 
"home", FormMethod.POST, new Dictionary<string, object>(){{"type", "file"}})
于 2008-11-21T01:17:06.747 回答
0

这也有效:

模型:

public class ViewModel
{         
    public HttpPostedFileBase File{ get; set; }
}

看法:

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new 
                                       { enctype = "multipart/form-data" }))
{
    @Html.TextBoxFor(m => m.File, new { type = "file" })       
}

控制器动作:

[HttpPost]
public ActionResult Action(ViewModel model)
{
    if (ModelState.IsValid)
    {
        var postedFile = Request.Files["File"];

       // now you can get and validate the file type:
        var isFileSupported= IsFileSupported(postedFile);

    }
}

public bool IsFileSupported(HttpPostedFileBase file)
            {
                var isSupported = false;

                switch (file.ContentType)
                {

                    case ("image/gif"):
                        isSupported = true;
                        break;

                    case ("image/jpeg"):
                        isSupported = true;
                        break;

                    case ("image/png"):
                        isSupported = true;
                        break;


                    case ("audio/mp3"):  
                        isSupported = true;
                        break;

                    case ("audio/wav"):  
                        isSupported = true;
                        break;                                 
                }

                return isSupported;
            }

内容类型列表

于 2016-05-10T07:11:09.627 回答
-2

我猜这有点 hacky,但它会导致应用正确的验证属性等

@Html.Raw(Html.TextBoxFor(m => m.File).ToHtmlString().Replace("type=\"text\"", "type=\"file\""))
于 2016-03-24T01:09:45.317 回答