我有一个包含更多类别的新闻。如果我使用firstCategory然后我收到第一个选择的类别作为输出,但它不是我想要的。我想显示新闻项目被标记为的所有类别。我试过跟进,但没有输出
<f:if condition=“{newsItem.categories}“>
<span class=“news-list-category label label-default test”>
<f:for each=“{categories}” as=“category”>
{category.title}
</f:for>
</span>
</f:if>