활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
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.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수
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/
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수
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
조회 수
답글
좋아요 수
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);
조회 수
답글
좋아요 수
Use the Java Sling API and Java class that extends WCMUsePojo. You can use Java API to retrieve information about JCR resources like pages.
조회 수
답글
좋아요 수