如何使用 Sightly(HTL) 访问字符串数组
How to access a string array using Sightly(HTL)
如何使用 sightly(HTL)
访问来自模型 class 的字符串数组
TestModel 是一个模型 class,return 是一个字符串数组,getResult() 是 getter 用于 return 字符串数组
怎么用sightly才能得到??
<p>display output :</p>
<sly data-sly-use.object = "com.silversea.core.models.TestModel">
<sly data-sly-list.mylist = "${object.Result}"> //what command show we use instead of data-sly-list
<p>1st text: ${item} </p>
</sly>
</sly>
您在这里遇到的问题是由两件事引起的:
Defining an identifier on the data-sly-list statement allows you to rename the itemList and item variables. item will become variable and itemList will become variableList
https://docs.adobe.com/content/help/en/experience-manager-htl/using/htl/block-statements.html
中有更多详细信息
因此在您的示例中,您必须将 ${item}
更改为 ${mylist}
<p>display output :</p>
<sly data-sly-use.object = "com.silversea.core.models.TestModel">
<sly data-sly-list.mylist = "${object.result}"> //what command show we use instead of data-sly-list
<p>1st text: ${mylist} </p>
</sly>
</sly>
第二件事是你还应该遵循 java bean 命名约定:所以如果你有 getter getResult()
那么在 HTL 中你应该使用 ${object.result}
(从小写开始)
如何使用 sightly(HTL)
访问来自模型 class 的字符串数组TestModel 是一个模型 class,return 是一个字符串数组,getResult() 是 getter 用于 return 字符串数组
怎么用sightly才能得到??
<p>display output :</p>
<sly data-sly-use.object = "com.silversea.core.models.TestModel">
<sly data-sly-list.mylist = "${object.Result}"> //what command show we use instead of data-sly-list
<p>1st text: ${item} </p>
</sly>
</sly>
您在这里遇到的问题是由两件事引起的:
Defining an identifier on the data-sly-list statement allows you to rename the itemList and item variables. item will become variable and itemList will become variableList
https://docs.adobe.com/content/help/en/experience-manager-htl/using/htl/block-statements.html
中有更多详细信息因此在您的示例中,您必须将 ${item}
更改为 ${mylist}
<p>display output :</p>
<sly data-sly-use.object = "com.silversea.core.models.TestModel">
<sly data-sly-list.mylist = "${object.result}"> //what command show we use instead of data-sly-list
<p>1st text: ${mylist} </p>
</sly>
</sly>
第二件事是你还应该遵循 java bean 命名约定:所以如果你有 getter getResult()
那么在 HTL 中你应该使用 ${object.result}
(从小写开始)