如何在Alfresco中创建自定义过滤器?

时间:2020-01-10 12:13:20

标签: alfresco alfresco-share alfresco-enterprise

我使用露天企业6.0。我想基于自定义方面创建自定义方面过滤器。我创建了一个看起来像这样的自定义模型。

<?xml version="1.0" encoding="UTF-8"?>
<model name="tm:contentModel" xmlns="http://www.alfresco.org/model/dictionary/1.0">

<imports>
    <!-- Import Alfresco Dictionary Definitions -->
    <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
    <!-- Import Alfresco Content Domain Model Definitions -->
    <import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
    <!-- Import Alfresco System Model Definitions -->
    <import uri="http://www.alfresco.org/model/system/1.0" prefix="sys"/>
</imports>

<namespaces>
    <namespace uri="http://www.test.com/model/mymodel/1.0" prefix="tm"/>
</namespaces>

<aspects>        
    <aspect name="tm:myvaluea">
        <title>Test Property</title>
        <properties>
            <property name="tm:myvalueb">
                <title>Test Property</title>
                <type>d:text</type>
                <index enabled="true">
                  <atomic>true</atomic>
                  <tokenised>false</tokenised>
                </index>
            </property>
        </properties>
    </aspect>          
</aspects>
</model>

按照本文档https://docs.alfresco.com/6.0/tasks/filtered-search-custom.html,我创建了solr-facets-config-custom.properties文件,其内容如下。

#Test
custom.tm\:myvalueb.filterID=filter_test
custom.tm\:myvalueb.displayName=Test
custom.tm\:myvalueb.displayControl=alfresco/search/FacetFilters
custom.tm\:myvalueb.maxFilters=3
custom.tm\:myvalueb.hitThreshold=1
custom.tm\:myvalueb.minFilterValueLength=2
custom.tm\:myvalueb.sortBy=DESCENDING
custom.tm\:myvalueb.scope=ALL
custom.tm\:myvalueb.scopedSites=
custom.tm\:myvalueb.isEnabled=true

在多面搜索filter by列中,如以下屏幕截图所示。我在属性值前面有undefined。不知道为什么显示undefined。我是否需要做任何其他配置或自定义才能使此自定义过滤器正常工作?

enter image description here

1 个答案:

答案 0 :(得分:0)

如果要在文本字段上创建搜索构面,为什么不使用搜索管理器来创建?这样,您就不必担心配置文件,您无需重新启动即可对其进行设置,测试和调整。