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

您必须将一些模型传递给您的部分视图,因为它需要一个实例IEnumerable<Student.Models.vwStudent>

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

或者,如果模型不为空,您可以检查局部视图。

<%@ 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

如果在没有 Model 的情况下需要渲染这个局部视图,当然可以在 foreach 循环之前测试 Model 不为空

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