目前我遇到的问题只发生在使用火花浏览引擎时.这是View.spark(强类型)中相关的代码位:
${Html.EditorFor(e => e)}
如果我使用.aspx视图,相同的代码可以正常工作:
<%= Html.EditorFor(e => e) %>
这里的“EditorFor”主要是ASP.NET MVC 2中的新功能,在我的项目中,我可以在ASPX视图中使用该助手,但不能使用Spark视图.
我试过upgrading Spark to use MVC 2(以及MvcContrib和Ninject),也许这是其中之一,但是到目前为止还没有运气 – 我仍然看到同样的行为.
这是从Spark的BatchCompiler类中抛出的完整错误消息.
Dynamic view compilation Failed.
(0,0): warning CS1701: Assuming
assembly reference ‘System.Web.Mvc,
Version=1.0.0.0,Culture=neutral,
PublicKeyToken=31bf3856ad364e35’
matches ‘System.Web.Mvc,
Version=2.0.0.0,
PublicKeyToken=31bf3856ad364e35’,you
may need to supply runtime policy
c:\inetpub\wwwroot[myproject]\CodeBetter.Canvas.Web\Views[MyEntity]\View.spark(9,16):
error CS1061:
‘System.Web.Mvc.HtmlHelper’ does not
contain a definition for ‘EditorFor’
and no extension method ‘EditorFor’
accepting a first argument of type
‘System.Web.Mvc.HtmlHelper’ could be
found (are you missing a using
directive or an assembly reference?)
以下是我的Global.asax中的Spark相关代码:
var settings = new SparkSettings() .AddNamespace("System") .AddNamespace("System.Collections.Generic") .AddNamespace("System.Web.Mvc") .AddNamespace("System.Web.Mvc.Html") .AddNamespace("MvcContrib.FluentHtml") .AddNamespace("CodeBetter.Canvas") .AddNamespace("CodeBetter.Canvas.Web") .SetPageBaseType("ApplicationViewPage") .SetAutomaticEncoding(true); #if DEBUG settings.SetDebug(true); #endif var viewFactory = new SparkViewFactory(settings); ViewEngines.Engines.Add(viewFactory);
此外,我在我的火花视图中引用了System.Web.Mvc.Html,如in another SO answer所述.
<use namespace="System.Web.Mvc.Html" />
解决方法
使用reflector检查每个程序集的依赖关系,我发现(如果您从CodeBetter.Canvas项目开始),有三个依赖项目需要更新以使用2.0.0版本的system.web.mvc.dll
火花下载最新版本
来自teamcity的火花,并使用
spark.web.mvc2.dll(其中引用
system.web.mvc.dll 2.0.0)Link to detailed instructions.
> MVCContrib.下载最新版本
的MVCContrib(download release,download source)引用
system.web.mvc.dll 2.0.0.
> Ninject. Download the latest version of
ninject并重新编译VS解决方案
在更新2.0.0的引用之后
版本的system.web.mvc.dll
现在,在项目中替换这些依赖项的程序集,并在必要时更新项目引用.一切都应该好