我正在尝试创建一个页面,在编辑“资产”时,用户可以在局部视图中上传图片。
在提交图片时,我希望将文件名保存到服务器位置并以其资产ID编号作为前缀,原因很明显,然后返回部分视图,但是图片中有。
因此,当用户提交编辑页面时,更改的详细信息以及新的闪亮图片网址将保存到数据库中。
到目前为止我所拥有的。
修改视图( Edit.cshtml )
@model Asset_Manager.DB.Asset
@{
ViewBag.Title = "Edit";
}
<h2>Edit</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>Asset</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.HiddenFor(model => model.Aid)
**** other fields
<div class="form-group">
@Html.LabelFor(model => model.Picture_Location, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.Partial("~/Views/Asset/UploadAssetImage.cshtml",Model)
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
部分上传视图( UploadAssetImage.cshtml )
@model Asset_Manager.DB.Asset
@using (Html.BeginForm("UploadPicture", "Asset", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<img src="@Model.Picture_Location" alt="@Model.Description" width="250" height="250" /><br />
<input type="file" name="file" />
<input type="submit" name="Submit" id="Submit" value="Upload" />
<input type="hidden" name="id" value="@Model.Aid" />
}
最后是Controller Method( AssetController.cs )
[HttpPost]
public ActionResult UploadPicture(int id,FormCollection collection)
{
if (Request.Files.Count > 0)
{
var file = Request.Files[0];
if (file != null && file.ContentLength > 0)
{
var fileName = "Asset_" + id + "_" + Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/Content/AssetImages/"), fileName);
file.SaveAs(path);
}
}
Asset A = new Asset();
A = _dal.GetAssetByID(id);
return PartialView("UploadAssetImage", A.Aid);
}
现在我的问题
每当我尝试提交照片时,我都会被踢到资产索引( Index.cshtml )页面,更不用说能够看到发送整个编辑是否有效。
此外,控制器方法下的断点不会触发,因此我无法追踪问题所在。
任何帮助/示例/指示方向都将受到赞赏。
答案 0 :(得分:1)
您在表单中有一个表单,该表单是无效的HTML。最外面的表单是提交的内容,重要的是,此表单不包含enctype="multipart/form-data"
属性。在视图中将该属性添加到表单中,然后删除部分中的表单。