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 の投稿の 1 つに出くわしました。

テストとモックを含む 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;
            }

contentType のリスト

于 2016-05-10T07:11:09.627 に答える
-2

これは少しハッキーだと思いますが、正しい検証属性などが適用されます

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