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

How to pass multiple parameters to sling model from sightly

Avatar

Level 2

I have written sling model exporter . I need to call this by passing 2 parameters fileReference & imgParam

<sly data-sly-use.slingmodel="com.myproj.core.models.TestSlingModel"  @ fileReference ='/some/path/to/file' , @ imgParam='image'/>

 

In sling model (@Model(adaptables = {Resource.class, SlingHttpServletRequest.class})

I have written:

@getter
@ValueMapValue
private String fileReference;

 

@getter
@ValueMapValue
private String imgParam;

 

I am not able to pass parameters properly. Can anyone tell me if this is right way of passing multiple parameters?

 

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 8

Hi @LaMind3 ,

Try passing multiple parameters as mentioned below, for sample i have hardcoded parameter as string values here & replace these hardcoded value by dynamic values. please make sure datatype of dynamic value getting passed in sightly is same as datatype defined for @Inject variable in Sling Model class. 

 

Sightly:

<sly data-sly-test.file="/some/path/to/file" data-sly-test.image="image">
<sly data-sly-use.helloWorldModel="${'com.project.HelloWorldModel' @fileReference=file, imgParam=image}"/>
</sly>

 

Sling Model Class:

@Model(adaptables = SlingHttpServletRequest.class, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL)
public class HelloWorldModel {

@Inject
private String fileReference;

@Inject
private String imgParam;

 

Hope this helps!

View solution in original post

5 Replies

Avatar

Community Advisor

Hi @LaMind3 

There is no need to pass parameters to Sling Model, whatever you can get in HTL, you can get the same in Sling Model as well. If the values are hardcoded, directly hardcode in Sling Model itself.

Try this: <sly data-sly-use.slingmodel="${'com.myproj.core.models.TestSlingModel' @ fileReference ='/some/path/to/file' , imgParam='image'}" />

Model:

@Inject

String fileReference;

@Inject

String imgParam;

AG

Avatar

Level 2
Hi Anudeep, I need to call this from different components so parameter values will change, I can not hard code it.

Avatar

Correct answer by
Level 8

Hi @LaMind3 ,

Try passing multiple parameters as mentioned below, for sample i have hardcoded parameter as string values here & replace these hardcoded value by dynamic values. please make sure datatype of dynamic value getting passed in sightly is same as datatype defined for @Inject variable in Sling Model class. 

 

Sightly:

<sly data-sly-test.file="/some/path/to/file" data-sly-test.image="image">
<sly data-sly-use.helloWorldModel="${'com.project.HelloWorldModel' @fileReference=file, imgParam=image}"/>
</sly>

 

Sling Model Class:

@Model(adaptables = SlingHttpServletRequest.class, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL)
public class HelloWorldModel {

@Inject
private String fileReference;

@Inject
private String imgParam;

 

Hope this helps!