我正在使用一种简单的方法来输出图像,如果媒体类型附加了链接,它将充当链接。这种方法已经使用了几个月和几个月,但突然有客户抱怨它不起作用。
我的剃刀宏整体看起来像这样:
@using umbraco.MacroEngines
@inherits umbraco.MacroEngines.DynamicNodeContext
@{
var topImageId = Model._topImage;
if ( topImageId != null ) {
var topImage = Library.MediaById(topImageId);
var linkId = topImage._link;
string cssStyle = string.Format( "background-image:url({0});height:{1}px;", topImage.umbracoFile, topImage.umbracoHeight );
<div id="topImage"
@if(!string.IsNullOrEmpty(linkId)){
var tempNode = @Model.NodeById(linkId);
@Html.Raw(string.Format(" onclick=\"window.location.href='{0}'\"", @tempNode.Url));
cssStyle += " cursor: pointer;";
}
@Html.Raw( string.Format( "style=\"{0}\"", cssStyle ) )
></div>
}
}
它会产生这两个错误:
Error Loading Razor Script (file: Top Image) The best overloaded method match for 'string.IsNullOrEmpty(string)' has some invalid arguments at CallSite.Target(Closure , CallSite , Type , Object )
at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1)
at ASP._Page_macroScripts_general_topImage_cshtml.Execute() in d:\inetpub\wwwroot\friendtex.com\www\macroScripts\general\topImage.cshtml:line 15
at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
at System.Web.WebPages.WebPage.ExecutePageHierarchy(IEnumerable`1 executors)
at System.Web.WebPages.WebPage.ExecutePageHierarchy()
at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage) 0.741249 0.004230
和
Error loading MacroEngine script (file: /general/topImage.cshtml, Type: ''
The best overloaded method match for 'string.IsNullOrEmpty(string)' has some invalid arguments
at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
我怀疑图像本身是原因的根源,但媒体图像绝对应有的样子,我看不出有什么不同。并且添加到奇怪的因素 - 宏与任何其他图像完美配合。失败的图像可以在这里找到
编辑:
出于某种奇怪的原因,如果我GetType()
按照 Douglas 的建议对图像执行操作,它会返回一个Umbraco.MacroEngines.DynamicXml
对象,而在任何其他图像上它都会返回一个字符串。它只是继续变得越来越奇怪。
第二次编辑:
我决定放弃代码并使用 Kevin Hendricks 建议的技术重写整个事情。现在突然之间,我没有收到任何错误,而且效果很好。唯一的区别是.ToString()
几个地方。