コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Is there a way to get the page properties of absolute parent using Sightly?

Avatar

Level 4
1 受け入れられたソリューション

Avatar

正解者
Community Advisor and Adobe Champion

Yeah sure, you can use sling model to get the parent Page object, and then use the page API from sightly to obtain such values.

I am using constructor injection as the example below as this strategy can also reduce memory consumption of your application, https://sourcedcode.com/blog/aem/aem-sling-model-field-injection-vs-constructor-injection-memory-con...

Sightly:

<sly data-sly-use.mycomponent="com.mysite.models.components.MyComponent"></sly>
${mycomponent.properties['jcr:title']}

Sling Model:

import com.day.cq.wcm.api.Page;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.models.annotations.DefaultInjectionStrategy;
import org.apache.sling.models.annotations.Model;
import org.apache.sling.models.annotations.injectorspecific.ScriptVariable;

import javax.inject.Inject;
import javax.inject.Named;

@Model(adaptables = Resource.class,
	defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL)
public class MyComponent {

	private Page absParentPage;

	@Inject
	public MyComponent(@ScriptVariable @Named("currentPage") final Page currentPage) {
		Page parentPage = currentPage.getAbsoluteParent(2);
		if (parentPage != null) {
			absParentPage = parentPage;
		}
	}

	public Page getAbsParentPage() {
		return absParentPage;
	}
}

 

 

 

元の投稿で解決策を見る

5 返信

Avatar

Community Advisor

@SHIBANI06 Please try similar to below Code snippet:

${currentPage.parent.properties['jcr:title']}

 Also, Please check below Community URL for similar ask:

https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-get-absolutepath-or...

Avatar

Community Advisor

Hi @SHIBANI06 

 

It is not possible to get the value in HTL only, as the absolute parent page can be at "n"th level.

 

So you need to use Sling Model to retrive the dynamic value.

 

Returns the absolute parent page. If no page exists at that level, null is returned. Example (this path == /content/geometrixx/en/products)

 | level | returned                        |
 |     0 | /content                        |
 |     1 | /content/geometrixx             |
 |     2 | /content/geometrixx/en          |
 |     3 | /content/geometrixx/en/products |
 |     4 | null                            |

https://www.adobe.io/experience-manager/reference-materials/6-5/javadoc/com/day/cq/wcm/api/Page.html...

 

Hope this helps! 

Avatar

Level 4

Thank you @Asutosh_Jena_ 

Avatar

正解者
Community Advisor and Adobe Champion

Yeah sure, you can use sling model to get the parent Page object, and then use the page API from sightly to obtain such values.

I am using constructor injection as the example below as this strategy can also reduce memory consumption of your application, https://sourcedcode.com/blog/aem/aem-sling-model-field-injection-vs-constructor-injection-memory-con...

Sightly:

<sly data-sly-use.mycomponent="com.mysite.models.components.MyComponent"></sly>
${mycomponent.properties['jcr:title']}

Sling Model:

import com.day.cq.wcm.api.Page;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.models.annotations.DefaultInjectionStrategy;
import org.apache.sling.models.annotations.Model;
import org.apache.sling.models.annotations.injectorspecific.ScriptVariable;

import javax.inject.Inject;
import javax.inject.Named;

@Model(adaptables = Resource.class,
	defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL)
public class MyComponent {

	private Page absParentPage;

	@Inject
	public MyComponent(@ScriptVariable @Named("currentPage") final Page currentPage) {
		Page parentPage = currentPage.getAbsoluteParent(2);
		if (parentPage != null) {
			absParentPage = parentPage;
		}
	}

	public Page getAbsParentPage() {
		return absParentPage;
	}
}

 

 

 

Avatar

Level 4

Hi @BrianKasingli ,

 

I was looking for a way to get the absolute parent page properties only using sightly but looks like we will have to make use of sling model in order to achieve this.

Thank you.