gpt4 book ai didi

java - 在 aem 6.4 中以编程方式安排内容

转载 作者:行者123 更新时间:2023-11-30 12:06:59 26 4
gpt4 key购买 nike

大家。我刚开始使用 aem。我正在使用 aem 6.4。我的任务是根据 JSON 文件的内容以编程方式对 aem 中的 cq:project 的内容顺序进行排序。JSON 文件的内容应设置为初始子项,而不是按创建日期排序的子项。

这是我的 cq:page 的当前结构。如果 child2 是 JSON 文件中指示的那个,则它应该是第一个显示的。 JSON 文件的内容只是一个 child 的名字,所以即使有 10 个 child ,JSON 文件的内容也应该始终是列表中的第一个。

enter image description here

虽然我仍然找不到任何解决方案,但我已经花了数小时研究如何实现它。关于我应该如何创建它的任何见解?谢谢!

最佳答案

据我了解,您需要一种方法来将 cq:Page 的命名子项排在列表的第一位。

This is possible because cq:Page is an orderable node. This would not be possible otherwise. you chan check any nodetype in CRX Explorer.

我认为添加有关 JSON 的内容会使问题复杂化。您只需要一个简单的方法,例如:

private void orderAsFirstChild(String childName, Node parentNode) throws RepositoryException {
if (parentNode.hasNode(childName)) {

// find current first child name
String firstChildName = Optional.ofNullable(parentNode.getNodes())
.map(NodeIterator::nextNode)
.map(node -> {
try {
node.getName();
} catch (RepositoryException e) {
e.printStackTrace();
}
return (String) null;
}) //
.orElse(null);
parentNode.orderBefore(childName, firstChildName);
}
}

你可能应该稍微清理一下,但这是使用 Node#orderBefore 的一般想法

关于java - 在 aem 6.4 中以编程方式安排内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55239195/

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