简单的ASP.NET MVC 2问题 - 使用编辑脚手架

时间:2010-11-21 10:52:57

标签: asp.net asp.net-mvc-2

早上好,

我正在使用编辑脚手架。这是两位代码: 控制器代码:

        public ActionResult Edit(int id)
        {
            var viewModel = new ListingManagerViewModel
            {
                Listing = AfvClassifiedsDB.Listings.Single(l => l.ListingID == id),
                Categories = AfvClassifiedsDB.Categories.ToList(),
            };

            return View(viewModel);
        }

        //
        // POST: /ListingManager/Edit/5

        [HttpPost]
        public ActionResult Edit(int id, FormCollection collection)
        {
            var listing = AfvClassifiedsDB.Listings.Single(l => l.ListingID == id);
            try
            {
                // Save the changes to Listing.

                UpdateModel(listing, "Listings");
                AfvClassifiedsDB.SaveChanges();

                return RedirectToAction("Index");
            }
            catch
            {
                // An error has occured so redisplay the form instead.

                var viewModel = new ListingManagerViewModel
                {
                    Listing = listing,
                    Categories = AfvClassifiedsDB.Categories.ToList(),
                };

                return View(viewModel);
            }
        }

查看代码:

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<AfvClassifieds.ViewModels.ListingManagerViewModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Edit
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

    <h2>Edit</h2>

    <% using (Html.BeginForm()) {%>
        <%: Html.ValidationSummary(true) %>

        <fieldset>
            <legend>Fields</legend>

            <%: Html.EditorFor(model => Model.Listing, new { Categories = Model.Categories })%>

            <p>
                <input type="submit" value="Save" />
            </p>
        </fieldset>

    <% } %>

    <div>
        <%: Html.ActionLink("Back to List", "Index") %>
    </div>

</asp:Content>

这似乎有效,但是当您提交表单时,值不会更改。这是使用MVC音乐商店作为指南创建的。没有错误,但我提交的表单值未提交。

1 个答案:

答案 0 :(得分:0)

您可以发布UpdateModel方法吗?

但是,显然你不会在那里更新任何东西。您没有对表单集FormCollection collection执行任何操作。 FormCollection是用户插入的实际表单数据,因此您应该从中获取所有值并将其保存在db中。