如何在mvc 3中的同一视图中添加列表和创建脚手架?

时间:2013-03-15 15:51:17

标签: asp.net-mvc-3 partial-views

我正在使用mv3,iam创建applicationin,当我点击创建按钮数据时,需要将数据提交到数据库,下面的列表会更新。

我也试过了部分视图,但它显示错误:

  

传递到字典中的模型项是类型的   'System.Collections.Generic.List`1 [MvcStudent.stu]',但是这个   字典需要“MvcStudent.Models.StuModel”类型的模型项。

我在plz help下面列出我的代码

StudentController.cs

    public class StudentController : Controller
    {
        //
        // GET: /Student/
        stdataDataContext stdb = new stdataDataContext();
        public ActionResult Index()
        {
            return View();
        }

        public ActionResult create()
        {

            return View(stdb.stus.ToList());
        }

        [HttpPost]
        public ActionResult create(MvcStudent.Models.StuModel stu)
        {

            stu student = new stu();
            student.name = stu.name;
            student.address = stu.addr;
            stdb.stus.InsertOnSubmit(student);
            stdb.SubmitChanges();

            return View();

        }

    }

_Create.cshtml

    @model MvcStudent.Models.StuModel

    @{
        ViewBag.Title = "Create";
    }

    <h2>Create</h2>

    <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" typ

e="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

@using (Html.BeginForm()) {
    @Html.ValidationSummary(true)
    <fieldset>
        <legend>StuModel</legend>

        <div class="editor-label">
            @Html.LabelFor(model => model.name)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.name)
            @Html.ValidationMessageFor(model => model.name)
        </div>

        <div class="editor-label">
            @Html.LabelFor(model => model.addr)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.addr)
            @Html.ValidationMessageFor(model => model.addr)
        </div>

        <div class="editor-label">
            @Html.LabelFor(model => model.gen)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.gen)
            @Html.ValidationMessageFor(model => model.gen)
        </div>

        <p>
            <input type="submit" value="Create" />
        </p>
    </fieldset>
}

@Html.Partial("_PartialGrid");

_PartialGrid.cshtml

    @model IEnumerable<MvcStudent.Models.StuModel>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
    <tr>
        <th>
            name
        </th>
        <th>
            addr
        </th>
        <th>
            gen
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.addr)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.gen)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
            @Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
            @Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
        </td>
    </tr>
}

</table>

1 个答案:

答案 0 :(得分:1)

错误告诉您需要知道的内容。再看一遍

  

传递到字典中的模型项的类型为'System.Collections.Generic.List`1 [MvcStudent.stu]',但此字典需要类型为'MvcStudent.Models.StuModel'的模型项。

您正在将类型为System.Collections.Generic.List`1[MvcStudent.stu]的对象从控制器传递到您的视图。您的视图需要MvcStudent.Models.StuModel类型的对象。

再看看你的控制器 -

public ActionResult create()
{
    return View(stdb.stus.ToList());
}

由于您尚未指定视图,因此它使用操作的名称来选择要尝试加载的视图 - 因此在这种情况下:Create。您的“创建”视图顶部包含此行

@model MvcStudent.Models.StuModel

这声明您必须传递该类型的对象才能加载视图。

这解释了你得到的错误 - 在我看来,你正在混合'创建'视图和'列表'视图。也许考虑将它们分开。