Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Issues in using pageproperties in Underscore JS

Avatar

Level 5

Hello All - I am using Underscore JS for component creation. The below snippet is not working for the page properties. Can someone tell how to address this?

 

<script type="text/template" id="testView">
<% _.each(test, function(test) { %>
<div class="templatetest">
<sly data-sly-test=" <% ${properties.displayimages} %> ">     (This line of code doesn't work)
<img src="<%= test.image %>" class="w-full" alt="">
</sly>
</div>
<% });%>
</script>

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

@v1101 

Use context="unsafe"

 

<sly data-sly-test=" <% ${properties.displayimages @context="unsafe"} %> "> 

 

I hope this will help.

View solution in original post

3 Replies

Avatar

Community Advisor

Hi @v1101 

It seems you are mixing JSP and HTL syntaxes. If your script file contains extension as .html then follow HTL documentation else follow JSP.

 

It looks like your script file is JSP as most of your shared code follows JSP syntaxes and JSP doesn't support sly and data-sly-test. It is HTL syntax of testing an expression. Please go through the link to get the corresponding syntax https://stackoverflow.com/questions/28409916/how-to-check-null-from-jcr-value-in-adobe-cq5

 

Regards.

Arpit Varshney

Avatar

Correct answer by
Community Advisor

@v1101 

Use context="unsafe"

 

<sly data-sly-test=" <% ${properties.displayimages @context="unsafe"} %> "> 

 

I hope this will help.

Avatar

Community Advisor

@v1101 

updating above

<div class="templatetest">

   <sly data-sly-test="${properties.displayimages @context='unsafe'}"> 

       <img src="<%= test.image %>" class="w-full" alt="">

   </sly> 

</div>