我最近开始使用 ASP.net MVC (4),但我无法解决我遇到的这个问题。我敢肯定,当您知道时,这很容易。
我实际上是在尝试在我的索引视图中执行以下操作:
在索引视图中列出类型为“Note”的数据库中的当前项目(这很容易) 在同一个索引视图中创建新项目(不是那么容易)。
所以我想我需要一个局部视图,并且我创建了如下(_CreateNote.cshtml):
@model QuickNotes.Models.Note
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>Note</legend>
<div class="editor-label">
@Html.LabelFor(model => model.Content)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Content)
@Html.ValidationMessageFor(model => model.Content)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
在我原来的索引视图(Index.cshtml)中,我试图呈现这个局部视图:
@model IEnumerable<QuickNotes.Models.Note>
@{
ViewBag.Title = "Personal notes";
}
<h2>Personal notes</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.Content)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Content)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
@Html.ActionLink("Details", "Details", new { id=item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID })
</td>
</tr>
}
</table>
<div>
@Html.Partial("_CreateNote")
</div>
(使用:@Html.Partial("_CreateNote"))但是。这似乎不起作用,因为我收到以下错误消息:
Line 35:
Line 36: <div>
Line 37: @Html.Partial("_CreateNote");
Line 38: </div>
Source File: c:\Dropbox\Projects\workspace .NET MVC\QuickNotes\QuickNotes\Views\Notes\Index.cshtml Line: 37
Stack Trace:
[InvalidOperationException: The model item passed into the dictionary is of type 'System.Data.Entity.DbSet`1[QuickNotes.Models.Note]', but this dictionary requires a model item of type 'QuickNotes.Models.Note'.]
System.Web.Mvc.ViewDataDictionary`1.SetModel(Object value) +405487
我的 NotesController 看起来像这样:
public ActionResult Index()
{
var model = _db.Notes;
return View(model);
}
//
// GET: /Notes/Create
public ActionResult Create()
{
return View();
}
//
// GET: /Notes/_CreateNote - Partial view
public ViewResult _CreateNote()
{
return View("_CreateNote");
}
我认为这与索引视图以不同方式使用模型这一事实有关,如在@model IEnumerable 中,但无论我如何更改它,使用 RenderPartial、RenderAction、将 ActionResult 更改为 ViewResult 等,我都无法得到它工作。
任何提示将非常感谢!如果您需要更多信息,请告诉我。如果需要,我很乐意压缩整个项目。
将加载局部视图的代码更改为:
@Html.Partial("_CreateNote", new QuickNotes.Models.Note())
这是因为局部视图需要一个注释,但正在传递父视图的模型,即 IEnumerable
您将相同的模型传递给局部视图,就像传递给主视图一样,它们是不同的类型。该模型是 Note
的 DbSet
,您需要在其中传入单个 Note
。
您可以通过添加一个参数来做到这一点,我猜这是因为它的创建表单将是一个新的 Note
@Html.Partial("_CreateNote", new QuickNotes.Models.Note())