为了在AEM查询构建器中获取使用特定标记标记的网页,我们将按此文档(https://helpx.adobe.com/experience-manager/6-2/sites/developing/using/querybuilder-api.html)
进行操作 path=/content/...
type=cq:Page
tagid=marketing:interest/product
tagid.property=jcr:content/cq:tags
但是如何在不使用上面的整个标记ID或完整路径的情况下获取具有相同标记标题的页面? 例如
path=/content/...
type=cq:Page
tagtitle=product
tagid.property=jcr:content/cq:tags
答案 0 :(得分:1)
你可以使用类似的东西:
JCR喜欢:
path=/content/..
type=cq:Page
property=jcr:content/@cq:tags
property.value=%tagname
property.operation=like
这将搜索cq:tags属性,其值以“product”结尾。 详细了解jcr:like 功能。
另一种可能的解决方案:
全文搜索:
path=/content/bet
type=cq:Page
fulltext.relPath=jcr:content/@cq:tags
fulltext=tagname
详细了解jcr:contains功能