TemplateBeginRepeat的顺序相反

时间:2013-01-04 16:05:38

标签: tridion tridion-2011

我需要使用TemplateBeginRepeat创建2个循环,我需要输出自定义标记

<!-- TemplateBeginRepeat name="customtag" -->
    ${RenderComponentPresentation(Field, rendercustomtagstarttemplate)}
<!-- TemplateEndRepeat -->

输出一些html

<!-- TemplateBeginRepeat name="customtag" -->
    ${RenderComponentPresentation(Field, rendercustomtagclosetemplate)}
<!-- TemplateEndRepeat -->

由于第二个循环关闭第一个循环呈现的自定义标记,因此第二个循环应该以相反的顺序运行。 (因为标签需要以相反的顺序关闭)。如何使用TemplateBeginRepeat以相反的顺序运行第二个循环?

2 个答案:

答案 0 :(得分:6)

没有内置方法以相反的顺序循环重复的项目。


如果您的customtag是包中的数组项(通常是组件或组件演示文稿的数组),您可以将列表按相反的顺序推送到包含相同项的包中,然后循环该项

<!-- TemplateBeginRepeat name="customtag_reversed" -->

如果您的customtag是字段,则无法使用,因为您无法将字段推入包中。在这种情况下,我建议创建一个自定义函数,以正确的顺序输出您的自定义标记,例如:

@@RenderCustomTags('customtag', 'Order.Reverse')@@

<强>更新

如果customtag组件链接字段,最好只将这些链接的组件作为组件数组项添加到包中。 Nuno在SDL Tridion World上提供了TBB的链接,但这是最关键的片段:

//  Tridion.ContentManager.Templating.ComponentPresentation
var list = new List<ComponentPresentation>(); 

list.Add(new ComponentPresentation(Component.Id, ComponentTemplate.Id));
// you'll want to do a loop of these for every linked Component

var item = package.CreateStringItem(ContentType.ComponentArray,
                                    ComponentPresentationList.ToXml(list));
package.PushItem("customtag_Components", item);

您需要为每个链接的组件执行这些循环:

list.Add(new ComponentPresentation(Component.Id, ComponentTemplate.Id));

而不是在C#代码中对组件模板ID进行硬编码,您也可以考虑在C#中将其保留为空,并将其保留在DWT中的RenderComponentPresentation调用内。就像您已经做的那样。

答案 1 :(得分:5)

这里的问题似乎是Dreamweaver语法仅适用于最简单的编程任务。 Frank和Nuno已经表明,将逻辑的某些移动到C#模板会有所改进,但您还应该考虑将此输出完全的生成移动到C#模板。换句话说,一旦你需要使用除DWT以外的其他东西,你的问题定义就会改变,因为现在描述的问题是以DWT为中心的。

仅存在反向循环的需要,因为您希望以正确的顺序关闭构造。在像C#这样的语言中,你可以通过使用嵌套(甚至是递归)函数调用来实现这个结果,或者(或许更有可能)通过将结束输出推送到堆栈来实现。