我有一个 AEM 站点。我的前端 content.xml 有一个不同颜色选项的选择列表可供选择:
<items jcr:primaryType="nt:unstructured">
<colors
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/select"
fieldLabel="Select a Color"
name="./colors">
<items jcr:primaryType="nt:unstructured">
<blue
jcr:primaryType="nt:unstructured"
text="Blue"
value="bl blue"/>
<green
jcr:primaryType="nt:unstructured"
text="Green"
value="gr green"/>....
我的模型看起来像:
@Model(adaptables=Resource.class)
public class Color{
@Inject @Named("colors") @Optional
private String cssClass ;
@Inject @Named("colors.text") @Optional //This is not working
private String label;
public String getCssClass() {
return cssClass;
}
public String getLabel() {
return label;
}
public void setCssClass(String cssClass) {
this.cssClass = cssClass;
}
public void setLabel(String label) {
this.label = label;
}
}
此代码将根据用户选择的内容将 cssClass 字符串返回为“bl blue”或“gr green”。
我的问题是如何让标签字符串返回“蓝色”或“绿色”(也就是所选颜色项的文本属性)?
谢谢!