0

在过去的 3 周里,我一直在使用 alfresco 5.0.d 版本。我将节点创建为机构,类型作为机构类型,并创建了名称、代码和 createdDate 等属性,并且能够将数据保存在节点属性中。在搜索中选项,将名称作为输入,需要根据名称检索代码和 createdDate。

用于访问以下节点属性的 Webscript API

nodes= search.luceneSearch("TEXT:"+filter, "@agency:name", true);

结果:

“节点类型:{http://www.alfresco.org/model/content/1.0}内容,节点方面:[{http://www.alfresco.org/model/rendition/1.0}再现,{http:// /www.alfresco.org/model/content/1.0}标题,{http://www.alfresco.org/model/content/1.0}拥有,{http://www.alfresco.org/model/content/1.0 }可审计的,{http://www.alfresco.org/model/system/1.0}可参考的,{http://www.alfresco.org/model/system/1.0}本地化的,{http://www.alfresco. org/model/content/1.0}作者,{http://www.alfresco.org/model/forum/1.0}discussable]","节点类型:{http://www.alfresco.org/model/content/ 1.0}内容,节点方面:[{http://www.alfresco.org/model/rendition/1.0}再现,{http://www.alfresco.org/model/content/1.0}标题,{http:// /www.alfresco.org/model/content/1.0}拥有,{http://www.alfresco.org/model/content/1.0}可审计,{http://www.alfresco.org/model/system/1.0}可参考

但是我需要根据我传递的 name 属性获取节点属性,因为需要知道删除基于 name 属性的节点。

请帮助解决这个问题。

4

1 回答 1

2

node.properties提供对该节点所有属性的访问。返回的属性通过关联数组访问。可以通过以下方式访问节点的属性:

Example: node.properties["name"]

Example: node.properties.name

资源

这对你有帮助吗?

于 2016-03-20T14:51:38.490 回答