我有一个设计对话框,其中的值存储在etc / design //中。但是现在我应该如何在Sling模型中阅读这些属性?
答案 0 :(得分:1)
您可以使用脚本绑定来获取currentStyle -
@Inject @Source("script-bindings")
private Style currentStyle
然后使用 -
currentStyle.get("<name of the text field>",String.class)
答案 1 :(得分:0)
您可以注入ResourceResolverFactory
然后获取ResourceResolver
,然后获取所需的任何属性。