我在solr-index maping.xml中添加了以下更改,并在solr scheama中添加了相关字段,但是content_type没有出现在xml结果中,请帮助我。
我已经在solr-index maping.xml中添加了:
<fields>
<field dest="content" source="content"/>
<field dest="contentType" source="contentType"/>
</fields>
我已经在solr架构中添加了:
<field name="contentType" type="string" indexed="true" stored="true" multiValued="true"/>
答案 0 :(得分:0)
不要忘记在查询中请求新添加的字段contentType
。
使用类似`q = text&amp; fl = content,contentType'的查询。