25

いくつかの文字列フィールドと画像を持つモデルに Post コントローラーがあります。MVC4 ではまったく同じコードが機能しますが、MVC 5 では Request.Files.Count は常に 0 です。

私のモデルには、HttpPostedFileBase ではなく画像用の byte[] があります

私の見解:

@using (Html.BeginForm("Create", "HotelManager", FormMethod.Post, new { enctype = "multipart/form-data", data_ajax = "false" }))
{
    @Html.AntiForgeryToken()
    @Html.TextBoxFor(model => model.Title, new { @class = "form-control" })
    @Html.TextAreaFor(model => model.Description, new { @class = "form-control", @rows = "7" })
    <input type="file" class="form-control filestyle">
    <input type="submit" value="Submit" class="btn btn-block" />
}

data_ajax = "false" を省略しようとしましたが、役に立ちません。

私のポストコントローラーは次のとおりです。

    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Create([Bind(Include = "Title,Description,Image")] Hotel hotel)
    {
        if (ModelState.IsValid)
        {
            // deal with the uploaded file
            if (Request.Files.Count > 0)
            {
                HttpPostedFileBase file = Request.Files[0];

                if (file != null && file.ContentLength > 0)
                {
                    // Code to process image, resize, etc goes here
                }
            }

        // Other code to add the hotel to db goes here
    }

デバッガーで、Request.Files.Count が常にゼロであることがわかります。理由がわかりません。ビューとコントローラーの両方のコードを、正常に動作する別の MVC4 プロジェクトからコピーしました。

Key Value
Request POST /HotelManager/Create HTTP/1.1
Accept  text/html, application/xhtml+xml, */*
Referer http://localhost:4976/HotelManager/Create
Accept-Language en-US,en;q=0.5
User-Agent  Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; ASU2JS; rv:11.0) like Gecko
Content-Type    multipart/form-data; boundary=---------------------------7de207070a24
Accept-Encoding gzip, deflate
Host    localhost:4976
Content-Length  946
DNT 1

IE Developer ウィンドウで、フォームの本文が空であることがわかります。

4

5 に答える 5

47

私は非常に多くの時間を無駄にし、必要なことは name 属性も使用することだけであることがわかりました

 <input type="file" name="somename"> 

新しいプロジェクトに name 属性がありませんでした。

于 2014-03-16T19:32:18.920 に答える