我是 MCV 新手,正在学习 MVC3。我创建了一个模型和一个控制器,并为我生成了视图。生成的代码对我来说非常有意义。我想修改生成的视图和控制器,以便在“创建”新记录时可以上传文件。有很多关于如何做到这一点的好信息。具体来说,我试过这个:http ://haacked.com/archive/2010/07/16/uploading-files-with-aspnetmvc.aspx
问题是即使我选择了一个文件(不大)并提交,请求中也没有文件。也就是说,Request.Files.Count 为 0。
如果我在同一个项目(无模型)中创建控制器并从头开始查看,则该示例可以正常工作。我只是无法将该功能添加到生成的页面中。基本上,我正在尝试让 Create 操作也发送文件。例如,创建一个新的产品条目并将图片与它一起发送。
示例创建视图:
@model Product.Models.Find
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@using (Html.BeginForm("Create", "Find", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.ValidationSummary(true)
<fieldset>
<legend>Find</legend>
<input type="file" id="file" />
<div class="editor-label">
@Html.LabelFor(model => model.Title)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Title)
@Html.ValidationMessageFor(model => model.Title)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Description)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Description)
@Html.ValidationMessageFor(model => model.Description)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
示例控制器:
[HttpPost]
public ActionResult Create(Product product)
{
if (ModelState.IsValid)
{
if (Request.Files.Count > 0 && Request.Files[0] != null)
{
//Not getting here
}
db.Products.Add(product);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(find);
}
这将很好地创建记录,但没有与请求关联的文件。
我也尝试过这样的控制器操作:
[HttpPost]
public ActionResult Create(HttpPostedFileBase file)
{
if (file.ContentLength > 0)
{
//Not getting here
}
return RedirectToAction("Index");
}
我想知道您是否不能在发布表单字段的同时发布文件?如果是这种情况,创建新记录并将图片(或其他文件)与之关联的模式是什么?
谢谢