gpt4 book ai didi

AEM : How to Iterate a HTL list in reverse order?

转载 作者:行者123 更新时间:2023-12-02 09:20:44 24 4
gpt4 key购买 nike

使用 data-sly-list 元素按原样打印。

在 HTL 中有没有一种方法可以让我们以相反的顺序打印列表项?

例如

如果列表包含 1,2,3,4 我想打印 4,3,2,1。

最佳答案

data-sly-list 当前无法控制处理列表的迭代顺序。您将不得不使用 JavaScript or Java Use API 更改要输入的数据的顺序。 , 下面是 JavaScript 使用 API 的例子

在logic.js文件中

use(function () {
var someArrayVar = [1,2,3,4];
return{
someArrayRev : someArrayVar.reverse()
};
});

在 HTML 标记中

 <div data-sly-use.logic="logic.js">
<div data-sly-list="${logic.someArrayRev}">
${item}
</div>
<div>

关于AEM : How to Iterate a HTL list in reverse order?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42849496/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com