在ASP.net使用局部视图MVC 4(Using partial views in ASP.net

2019-07-05 16:51发布

我最近开始玩弄ASP.net MVC(4),但我不能换我的头周围我在这一个问题。 我敢肯定,这很容易,当你知道它。

我基本上是试图做下面我索引视图:

  1. 列出在索引视图类型“注意”的数据库的当前项目(这很容易)
  2. 创建在同一个索引视图(不是那么容易的)新的项目。

所以我我需要的局部视图,并且我已经创建如下(_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等,我不能让它的工作。

任何提示将非常感谢! 请让我知道如果你需要任何更多的信息。 我会很高兴,如果需要压缩了整个项目。

Answer 1:

改变在这里装载了局部视图的代码:

@Html.Partial("_CreateNote", new QuickNotes.Models.Note())

这是因为局部视图期待一个说明,但获得通过父视图的模型,该模型是IEnumerable的



Answer 2:

你传递相同的模型作为被传递到主视图的局部视图,它们是不同的类型。 该模型是一个DbSetNote ,这里,你需要在一个单一的通过Note

因为它是建立形式将是一个新的,您可以通过添加参数,我猜这样做Note

@Html.Partial("_CreateNote", new QuickNotes.Models.Note())


文章来源: Using partial views in ASP.net MVC 4