我在静态文本Web部件文本字段中声明变量时遇到问题。当我使用这样的代码时:
{% doc = Documents.WithAllData[CurrentDocument.Children["Hero"].Children[0].GetValue("NodeAliasPath")]; #%}
<p>
{% if (!string.IsNullOrEmpty(doc.HeroButtonLabel)) { %}
<a class="btn btn-secondary arrow" href="{% doc.HeroUrl #%}">
{% doc.HeroButtonLabel #%}
</a>
{% } #%}
{% if (!string.IsNullOrEmpty(doc.HeroUrl2Label)) { %}
<a class="btn btn-secondary arrow" href="{% doc.HeroUrl2 #%}">
{% doc.HeroUrl2Label #%}
</a>
{% } #%}
</p>
第一行在呈现的页面上显示文档名称(其余代码工作正常)。我使用Kentico 10。
答案 0 :(得分:2)
添加一个return语句,以便您的行如下所示:
{%
doc = Documents.WithAllData[CurrentDocument.Children["Hero"].Children[0].GetValue("NodeAliasPath")];
return;
#%}