如何在Sling模型中获取设计对话框属性?

时间:2016-07-13 09:43:54

标签: aem sling-models

我有一个设计对话框,其中的值存储在etc / design //中。但是现在我应该如何在Sling模型中阅读这些属性?

2 个答案:

答案 0 :(得分:1)

您可以使用脚本绑定来获取currentStyle -

@Inject @Source("script-bindings")
private Style currentStyle

然后使用 -

currentStyle.get("<name of the text field>",String.class)

答案 1 :(得分:0)

您可以注入ResourceResolverFactory然后获取ResourceResolver,然后获取所需的任何属性。