0

此代码片段应该在 sling 中获取页面属性。

为什么我会收到此错误:Please check if the declared type is right and if the method exists.

private String properties;

public void setProperties(String properties){
    this.properties = property;       
    ValueMap property = (ValueMap) properties.getAttribute("properties");
    pageTitle = property.get("pageTitle", "");
}  
4

1 回答 1

2

propertiesString没有您尝试访问的方法的类型

于 2013-05-28T18:25:09.357 回答