MVC5剃刀上传图片

本文关键字:剃刀 MVC5 | 更新日期: 2023-09-27 18:12:40

我正在尝试创建一个页面,在编辑"资产"时,用户可以在部分视图内上传图片。

提交图片时,我希望将文件名保存到服务器位置,并以其资产ID号为前缀,原因很明显,然后返回部分视图,但在图片中。

因此,当用户提交编辑页面时,更改的详细信息以及新的闪亮图片url被保存到DB。

这是我到目前为止写的。

编辑视图(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);
}

Now My Issues

每次我尝试提交照片时,我都会被踢出资产索引( index .cshtml)页面,更不用说能够看到是否发送整个编辑工作。

控制器方法下的断点也没有触发,所以我无法跟踪问题可能在哪里。

任何帮助/例子/指针在正确的方向将不胜感激。

MVC5剃刀上传图片

表单中的表单是无效的HTML。最外层的表单是要提交的表单,重要的是,这个表单不包含enctype="multipart/form-data"属性。将该属性添加到视图中的表单中,并在部分中删除该表单。