我正在尝试使用MvcContrib的Html.Pager()进行分页,但是我的 Razor View 无法引用正确的 namespace 。

Controller 还可以:

using MvcContrib.Pagination;
...
public ActionResult List(int? page)
{
    return View(new UserRepository().GetUserList().AsPagination(page ?? 1, 10));
}

但是,该 View 没有任何意义:
@using MvcContrib

或者
@Html.Pager((IPagination)Model)

我通过NuGet安装了MvcContrib。我尝试将MvcContribMvcContrib.UIMvcContrib.UI.Html命名空间添加到web.config中的<pages><namespaces>中,但是没有运气。我错过了什么?

最佳答案

与WebForms相反,Razor不使用<namespaces>中的~/web.config部分。它使用<namespaces>中的~/Views/web.config:

  <system.web.webPages.razor>
    <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    <pages pageBaseType="System.Web.Mvc.WebViewPage">
      <namespaces>
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
        <add namespace="MvcContrib"/>
        <add namespace="MvcContrib.UI.Grid"/>
        <add namespace="MvcContrib.UI.Pager"/>
      </namespaces>
    </pages>
  </system.web.webPages.razor>

然后:
@model MvcContrib.Pagination.IPagination<SomeViewModel>
@Html.Pager(Model)

或者,如果您愿意,也可以在 View 中添加适当的 namespace :
@model MvcContrib.Pagination.IPagination<SomeViewModel>
@using MvcContrib.UI.Pager
@Html.Pager(Model)

10-04 16:39