내 커뮤니티 업적 표시줄을 확대합니다.

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

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Sightly sample code

Avatar

Level 4

Hi,

Can anyone post a sample code in sightly which contains getting a node from page, resource resolver , session variable, page to node conversion so that one can understand. Please help.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

There are many such examples available 

https://helpx.adobe.com/experience-manager/using/creating-htl-component.html

http://adobeaemclub.com/multifield-touch-ui-sightly-component/

But I would recommend you to use Sling API (Resource) instead of JCR API (Node) api.

원본 게시물의 솔루션 보기

5 답변 개

Avatar

Level 2

You can use javascript with slightly (html). In your JavaScript you have access to implicit objects such as PageManager, currentContent, currentSession etc. You need to create a function in your js file that returns the value such as page node etc. Once you have that then you can use slightly to pull the value from your javascript using helper object . Example of this can be found under the link below.

http://blogs.adobe.com/experiencedelivers/experience-management/htl-javascript-use-api/

Avatar

정확한 답변 작성자:
Level 10

There are many such examples available 

https://helpx.adobe.com/experience-manager/using/creating-htl-component.html

http://adobeaemclub.com/multifield-touch-ui-sightly-component/

But I would recommend you to use Sling API (Resource) instead of JCR API (Node) api.

Avatar

Employee

Normally this goes via Java/Javascript, however I strongly advise against the Node.class api.

It is too low-level, better to use things like the ValueMap api

Avatar

Level 4

In JSP the below lines gives the node jcr:content, how to achieve similar thing in sightly. How to get Page from Node and iterate through the pages in sightly?? Can you please help.

 String path = "/content/usergenerated/jcr:content";

     Node node = currentPage.getContentResource().adaptTo(Node.class);
      String title = node.getName(); 
            out.println(title);

Avatar

Level 10

Use the Java Sling API and Java class that extends WCMUsePojo. You can use Java API to retrieve information about JCR resources like pages.