<input type =“ file” />のHTMLヘルパー


124

HTMLHelperファイルのアップロードはありますか?具体的には、私はの交換を探しています

<input type="file"/>

ASP.NET MVC HTMLHelperを使用します。

または、使用する場合

using (Html.BeginForm()) 

ファイルアップロードのHTMLコントロールとは何ですか?

回答:


207

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

これはファイル入力をレンダリングせず<input type="file" />、テキストボックスのみをレンダリングします
Ben

Microsoft.Web.Mvc.FileExtensionsという行がある@PauliusZaliaduonis MVCに赤の下線が引かれています。どうすれば修正できますか?
ポムスター2012

1
@pommy FileExtensionsAttributeはMvcFuturesで使用できることに注意してください(MVC3以降)。ここからソースを使用できます:ソース または.NET Framework 4.5で利用可能です。MSDNのドキュメントを
Paulius Zaliaduonis

1
残念ながら、FileExtension属性はHttpPostedFileBaseタイプのプロパティでは機能しないようですが、文字列のみのようです。少なくとも、pdfを有効な拡張子として受け入れたことはありません。
Serj Sagan 2013

これにより、有効なHTML5として検証されない値属性(value = "")が追加されます。値は入力タイプfileおよびimageでは無効です。value属性を削除する方法はありません。ハードコーディングされているようです。
Dan Friedman

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ヘルパーメソッドとの一貫性を保ちます。
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属性について文字列でのみ機能することについて書いたためです。


この答えをパウリウスの答えにマージできませんか?
Graviton 2014

2

を使用するにはBeginForm、次のようにします。

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

2
最初にinput要素を生成する方法について言及し、次にform要素を生成する方法について話しますか?これは本当にあなたの答えですか?
プペノ2009年

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

contentTypesのリスト


-2

これはちょっとハックですが、正しい検証属性などが適用されます

@Html.Raw(Html.TextBoxFor(m => m.File).ToHtmlString().Replace("type=\"text\"", "type=\"file\""))
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.