0

我正在使用液体循环浏览 webapp 的所有项目并输出各个字段。这工作正常,但由于某种原因我无法输出描述字段。

以下代码是我正在使用的简化版本:

{module_webapps id="26025" collection="tutors" filter="all" template=""}

{% for tutor in tutors.items %}
  {{tutor}}
  {{tutor.name}}
  {{tutor.description}}
  {{tutor.["external website"]}}
{% endfor -%}

{{tutor}}标记输出当前 Web 应用程序项的所有字段的数组,但描述除外,所以我想这{{tutor.description}}也不起作用也就不足为奇了。为什么是这样?

当使用模板布局(我不想这样做){tag_description}和 {{description}} 按预期工作时。

有谁知道在模板布局之外以这种方式使用液体时如何访问描述字段?

4

1 回答 1

1

当前description字段和类型字段存在问题 - 除非标准列表模板文件 (at )Image中有一些 Liquid 标记,否则它们无法使用。/Layouts/Webapps/WEBAPPNAME/list.html添加这样的评论应该可以解决它:

{% comment %} This is to get the description and image fields to work {% endcomment %}

官方 Adob​​e Business Catalyst 论坛正在讨论此问题:https ://forums.adobe.com/ideas/4133

于 2015-02-28T07:30:13.027 回答