24

鉴于此模型,是否可以使用 Html.EditorFor() 将文件上传输入元素呈现到页面?我玩弄了属性 FileName 的数据类型,它肯定会影响呈现的编辑器表单。

public class DR405Model
{
    [DataType(DataType.Text)]
    public String TaxPayerId { get; set; }
    [DataType(DataType.Text)]
    public String ReturnYear { get; set; }

    public String  FileName { get; set; }
}

强类型 *.aspx 页面如下所示

    <div class="editor-field">
        <%: Html.EditorFor(model => model.FileName) %>
        <%: Html.ValidationMessageFor(model => model.FileName) %>
    </div>
4

4 回答 4

39

使用HttpPostedFileBase在视图模型上表示上传的文件会更有意义,而不是string

public class DR405Model
{
    [DataType(DataType.Text)]
    public string TaxPayerId { get; set; }

    [DataType(DataType.Text)]
    public string ReturnYear { get; set; }

    public HttpPostedFileBase File { get; set; }
}

那么你可以有以下视图:

<% using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" })) { %>

    ... input fields for other view model properties

    <div class="editor-field">
        <%= Html.EditorFor(model => model.File) %>
        <%= Html.ValidationMessageFor(model => model.File) %>
    </div>

    <input type="submit" value="OK" />
<% } %>

最后在里面定义对应的编辑器模板~/Views/Shared/EditorTemplates/HttpPostedFileBase.ascx

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<input type="file" name="<%: ViewData.TemplateInfo.GetFullHtmlFieldName("") %>" id="<%: ViewData.TemplateInfo.GetFullHtmlFieldId("") %>" />

现在控制器可能如下所示:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View(new DR405Model());
    }

    [HttpPost]
    public ActionResult Index(DR405Model model)
    {
        if (model.File != null && model.File.ContentLength > 0)
        {
            var fileName = Path.GetFileName(model.File.FileName);
            var path = Path.Combine(Server.MapPath("~/App_Data"), fileName);
            model.File.SaveAs(path);
        }

        return RedirectToAction("Index");
    }
}
于 2011-05-25T06:33:29.197 回答
10

这是 MVC 5 的示例(htmlAttributes 需要)。

在 ~\Views\Shared\EditorTemplates 下创建一个名为 HttpPostedFileBase.cshtml 的文件

@model HttpPostedFileBase
@{
    var htmlAttributes = HtmlHelper.AnonymousObjectToHtmlAttributes(ViewData["htmlAttributes"]);
    htmlAttributes["type"] = "file";
}
@Html.TextBoxFor(model => model, htmlAttributes)

这会生成具有正确 ID 和名称的控件,并在从模型 EditorFor 模板编辑集合时工作。

于 2015-11-17T10:48:01.540 回答
6

添加:htmlAttributes = new { type = "file" }

<div class="editor-field">
    <%: Html.EditorFor(model => model.FileName, new { htmlAttributes = new { type = "file" }}) %>
    <%: Html.ValidationMessageFor(model => model.FileName) %>
</div>

注意:我使用的是 MVC 5,我没有在其他版本上测试过。

于 2017-01-30T12:59:00.123 回答
0

不,但看看http://haacked.com/archive/2010/07/16/uploading-files-with-aspnetmvc.aspx

于 2011-05-24T16:08:57.557 回答