0

マスター ビューを起動すると、「オブジェクト参照がオブジェクトのインスタンスに設定されていません」というエラーが表示される、厳密に型指定された部分ビューがあります。まだパラメーターを渡していないことはわかっていますが、このエラーを処理する方法はありますか?

マスター ビュー:

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Test Form
</asp:Content>

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

<div id="partial">
<% Html.RenderPartial("DisplayPartial"); %>
</div>

</asp:Content>

部分図:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Student.Models.vwStudent>>" %>

<% foreach (var item in Model) {
           if (item == null) continue; %>

        <tr>            
            <td>
                <%: item.Item1%>
            </td>
            <td>
                <%: item.Item2%>
            </td>
        </tr>

    <% } %>

    </table>
4

2 に答える 2

2

のインスタンスが必要なため、一部のモデルを partialView に渡す必要があります。IEnumerable<Student.Models.vwStudent>

<% Html.RenderPartial("DisplayPartial", model); %>

または、モデルが null でない場合は、部分ビューで確認できます。

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Student.Models.vwStudent>>" %>


<% if (Model != null) {
     foreach (var item in Model) {
           if (item == null) continue; %>

        <tr>            
            <td>
                <%: item.Item1%>
            </td>
            <td>
                <%: item.Item2%>
            </td>
        </tr>

    <% }
} %>

    </table>
于 2012-07-10T18:42:47.197 に答える
1

If you need to render this partial view when you don't have a Model, you can certainly test that Model is not null before the foreach loop

if (Model != null)
    foreach (...)
于 2012-07-10T18:44:15.160 に答える