Не удается обновить изображение с помощью fileupload в MVC - PullRequest
0 голосов
/ 06 июня 2011

Я пытаюсь обновить текст и изображения, которые уже обновлены в базах данных.У меня есть раздел администратора, в котором есть меню новостей, где пользователь может редактировать и обновлять новости с изображениями.Проблема в том, что я могу редактировать и обновлять текст новостей, но изображения не обновляются.Ниже находится контроллер и вид:

 [HttpPost]
    [ValidateInput(false)]
    public ActionResult Edit(int id, FormCollection collection, IEnumerable<HttpPostedFileBase> files)
    {
        INewsRepository newsResp = new NewsRepository();
        News news = newsResp.GetNews(id);

        if (TryUpdateModel(news)){
            newsResp.Save();
            return RedirectToAction("Index");
        }else{
            return View();
        }
    }
<% using (Html.BeginForm("Edit", "News", FormMethod.Post, new { enctype = "multipart/form-data" }))
                  { %>

                <%: Html.ValidationSummary(true) %>
                <table cellpadding="2" cellspacing="2" border="0">
                    <tr>
                        <td style="width:100px;">
                            <div class="editor-label">
                                Title</div>
                        </td>
                        <td>
                            <div class="editor-field">
                                <%: Html.TextBoxFor(model => model.Title, new { style = "width:300px;" })%>
                                <%: Html.ValidationMessageFor(model => model.Title)%>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                            <div class="editor-label">
                                Article content</div>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                            <div class="editor-field">
                                <%: Html.TextAreaFor(model => model.Article, new { @class = "tinymce" })%>
                                <%: Html.ValidationMessageFor(model => model.Article)%>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Image 1
                        </td>
                        <td>

                            <img height="56px" width="75px" alt="image1" src="/content/images/content/<%: Model.ImageLarge %>" />
                            <br />

                            <input type="file" name="files" id="file1" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Image 2
                        </td>
                        <td>

                            <img height="56px" width="75px" alt="image1" src="/content/images/content/<%: Model.ImageLarge2 %>" />
                            <br />

                            <input type="file" name="files" id="file2" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Image 3
                        </td>
                        <td>
                            <img height="56px" width="75px" alt="image1" src="/content/images/content/<%: Model.ImageLarge3 %>" />
                            <br />

                            <input type="file" name="files" id="file3" />
                        </td>
                    </tr>
                </table>

                <p>
                    <input type="submit" value="Save" />
                </p>
                <% } %>

1 Ответ

0 голосов
/ 06 июня 2011

TryUpdateModel не будет обновлять файлы.Вы можете вручную скопировать потоки в соответствующее свойство вашей News модели:

foreach (var file in files)
{
    byte[] buffer = new byte[file.InputStream.Length];
    file.InputStream.Read(buffer, 0, buffer.Length);
    news.Files.Add(buffer);
}
...