How to pass multiple parameters to sling model from sightly | Community
Skip to main content
Level 2
December 9, 2020
Solved

How to pass multiple parameters to sling model from sightly

  • December 9, 2020
  • 2 replies
  • 12800 views

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:

@14766979
@ValueMapValue
private String fileReference;

 

@14766979
@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?

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Manjunath_K

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!

2 replies

Anudeep_Garnepudi
Community Advisor
Community Advisor
December 9, 2020

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

Anudeep_Garnepudi
Community Advisor
Community Advisor
December 9, 2020
from where those values come from?
Manjunath_K
Manjunath_KAccepted solution
Level 7
December 9, 2020

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!

LaMind3Author
Level 2
December 10, 2020
Thanks @manjunath_k , will try this out