如何获取与请求匹配的字段?
我需要您的帮助才能在我的 solR 查询响应中获取更多信息。
我有一个简单的输入文本,它允许我在同一查询中查询多个字段。
所以我的查询看起来像这样 “q=email:martyn+OR+name:martynn+OR+commercial:martyn ...”
响应中是否可以知道找到“martynn”的字段?
I need your help to get more information in my solR query's response.
i've got a simple input text which allows me to query several fields in the same query.
So my query looks like this
"q=email:martyn+OR+name:martynn+OR+commercial:martyn ..."
Is it possible in the response to know the fields where "martynn" has been found?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到您的查询字符串中:
它告诉 solr 突出显示进行匹配的字段。
此 solr wiki 页面 描述了 solr 可用的所有突出显示参数。
Add this to your query string:
which tells solr to highlight the fields where the matches were made.
This solr wiki page describes all the highlighting parameters available with solr.