我正在尝试在我的MVC中使用Glass Mapper - 在Sitecore - 7.1中的v4.0.30319项目。
以下是我安装的Glass Mapper版本
当我从nuget安装Glass mapper Mvc时,它在App_Config中添加了一个名为(Glass.Mapper.Sc.Mvc)的配置文件 - >包含文件夹
文件内容如下
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings></settings>
<pipelines>
<mvc.getModel>
<processor type="Glass.Mapper.Sc.Pipelines.Response.GetModel, Glass.Mapper.Sc"/>
</mvc.getModel>
</pipelines>
</sitecore>
</configuration>
现在当我运行我的网站时,它会给我以下错误(当运行上面配置中提到的管道时)
无法解析类型名称: Glass.Mapper.Sc.Pipelines.Response.GetModel,Glass.Mapper.Sc(方法: Sitecore.Configuration.Factory.CreateType(XmlNode configNode,String [] 参数,布尔断言))
但参考已经存在?
我错过了任何步骤吗?有人可以帮忙。
答案 0 :(得分:7)
Glass Mapper的开发人员最近将一些类移动到单独的MVC程序集中,并且没有更改配置文件。无法加载的类现在位于Glass.Mapper.Sc.Mvc
程序集中,因此您的配置应如下所示:
<mvc.getModel>
<processor type="Glass.Mapper.Sc.Pipelines.Response.GetModel, Glass.Mapper.Sc.Mvc"/>
</mvc.getModel>