この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
I have a use-case where I want to use expose a JSON(Multiple resource types).
/content/wknd/poc/jcr:content/root/container/imaewithtext.json .its exposing only parent content not child components(Text and Image)
<div class="imagewithtext">
<div data-sly-resource="${'image' @path='wknd/components/text'}"/>
<div data-sly-resource="${'image' @path='wknd/components/image'}"/>
</div>
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
Hi @AEMLearner-1989, you can use .model.json instead of .json to export the content if the Sling Models use the Sling Model Exporter framework.
Hi @AEMLearner-1989, you can use .model.json instead of .json to export the content if the Sling Models use the Sling Model Exporter framework.
@AEMLearner-1989 - Check this you will have an idea about sling exporter after going through -
I got the solution. Model.json is won't work here instead you can give infinity.json so that iterate all the child nodes of parent.
And also you can write a custom logic like resource.listchildren and iterate the node as per your need.
表示
返信
いいね!の合計