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?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
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!
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
Views
Replies
Total Likes
Views
Replies
Total Likes
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!
Views
Replies
Total Likes