0

我有一个主要的 mvc 项目和一个区域

该区域使用来自主项目的共享 _Layout.cshtml。在共享的 _Layout.cshtml 中,有一个 RenderPartial("GlobalNavigation","Navigation") 调用主项目中的控制器“Navigation”。所以我得到了这个错误

The IControllerFactory 'abc.NinjectControllerFactory' did not return a controller for the name 'Navigation'.

我猜是因为视图在区域中调用控制器“导航”,但控制器“导航”在主项目中。我怎样才能解决这个问题?

_Layout.cshtml

<div id="global-nav">
    @{ Html.RenderAction("GlobalNavigation", "Navigation"); }
</div>
4

2 回答 2

2

尝试这个:

<div id="global-nav">
    @{ Html.RenderAction("GlobalNavigation", "Navigation", new { area = "" }); }
</div>
于 2013-08-02T17:51:45.883 回答
0

如果您只是加载部分内容,为什么需要控制器参数?控制器方法中是否构建了逻辑?

试试:

@{ Html.RenderAction("GlobalNavigation"); }

否则,我建议在您的项目中使用 HTML 助手来构建我们的主导航。

例如。

帮手PROJECT.Web.ExtensionMethods.HtmlExtensions

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;

namespace OHTP.Web.ExtensionMethods
{
    public static class HtmlExtensions
    {
        public static MvcHtmlString NavMenuLink(this HtmlHelper helper, string linkText, string actionName, string controlName, string activeClassName)
        {
            if (helper.ViewContext.RouteData.Values["action"].ToString() == actionName &&
                helper.ViewContext.RouteData.Values["controller"].ToString() == controlName)
            {
                var menuLink = helper.ActionLink(linkText, actionName, new { Controller = controlName }, new {Class = activeClassName}); 
                return menuLink;
            }

            return helper.ActionLink(linkText, actionName, controlName);
        }
    }
}

然后在部分调用它

<%= Html.NavMenuLink("Copy to display", "ControllerName", "Link", "class") %>
于 2013-08-02T17:56:34.360 回答