-1

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

4

2 回答 2

1

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

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

然后使用 -

currentStyle.get("<name of the text field>",String.class)
于 2016-07-13T13:30:50.290 回答
0

您可以注入 aResourceResolverFactory然后获取 a ResourceResolver,然后获取您需要的任何属性。

于 2016-07-26T10:08:06.667 回答