<input type =“ file” />的HTML帮助器


124

是否有HTMLHelper用于文件上传的文件?具体来说,我正在寻找替代

<input type="file"/>

使用ASP.NET MVC HTMLHelper。

或者,如果我使用

using (Html.BeginForm()) 

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

Answers:


207

HTML上传文件ASP MVC 3。

模型:(请注意,MvcFutures中提供了FileExtensionsAttribute。它将验证客户端和服务器端的文件扩展名。

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);
        }
    }
}

这不呈现文件输入<input type="file" />,仅呈现文本框
2012年

@PauliusZaliaduonis带有Microsoft.Web.Mvc.FileExtensions行,MVC下划线为红色。我该如何解决?
Pomster 2012年

1
@pommy请注意,FileExtensionsAttribute在MvcFutures(从MVC3开始)中可用。您可以从此处使用源: 或在.NET Framework 4.5中可用,请参阅MSDN文档
Paulius Zaliaduonis

1
不幸的是,FileExtension属性似乎不适用于HttpPostedFileBase类型的属性,而只是字符串。至少它从未接受过pdf作为有效扩展名。
Serj Sagan

这将添加一个不能验证为有效HTML5的value属性(value =“”)。值在输入类型文件和图像上无效。我看不到任何删除value属性的方法。它似乎是硬编码的。
丹·弗里德曼

19

您还可以使用:

@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> 
}


6

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

在您的HtmlHelper Extension类中:

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)

此解决方案更吸引人,并使我与@Html helper方法保持一致。
Yahfoufi

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属性的内容仅适用于字符串。


您不能将此答案合并为Paulius的答案吗?
Graviton 2014年

2

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

 using(Html.BeginForm("uploadfiles", 
"home", FormMethod.POST, new Dictionary<string, object>(){{"type", "file"}})

2
首先,您提到如何生成输入元素,而现在您在谈论如何生成表单元素?这真的是你的答案吗?
pupeno

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;
            }

contentType列表


-2

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

@Html.Raw(Html.TextBoxFor(m => m.File).ToHtmlString().Replace("type=\"text\"", "type=\"file\""))
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.