我有父组件和子组件。我正在使用 data-sly-resource 在父组件(html)中包含子组件(基于类型的 3 种 html)。对于类型 3 子组件,我需要在 html 中呈现父组件的数据(我有父组件的吊索模型)。比较类型是从儿童吊索模型完成的。如何实现这个功能?
我的代码是
> <sly data-sly-use.model="com.example.MyBlog.ChildModel" data-sly-unwrap>
> .
> .
> .
> <div data-sly-test="${model.itemType} == 'type3'">
> <div> Here I need to access data from Parent Component(either sling model or JCR)</div>