我正在将耐嚼的 gem 用于带有 Rails 的 elasticSearch。我有相关文档,我想在结果中同时显示突出显示的字段和其他一些字段。
当我返回搜索结果时,突出显示“主”记录中的匹配项,但“相关记录”中没有(不确定正确的术语是什么)。
我的 search_index.rb 看起来像这样:
define_type PlayList.includes(:play_list_items,:user) do
field :title
field :description
field :thumb_missing, value: ->{intro_image_file_name.nil?}
field :thumb_square, value: ->{intro_image(:thumb_square)}
field :play_list_items do
field :item_title, value: ->{title}
field :commentary_text
field :thumb_square, value: ->{get_image(:thumb_square)}
end
field :user do
field :name
field :avatar, value: ->{avatar(:tiny)}
end
end
查询看起来像这样
@play_lists = SearchIndex::PlayList.query(multi_match: {
query: params[:term],
fields: ["title","description","item_title","commentary_text"]
}).highlight(
pre_tags:["<mark>"],
post_tags:["</mark>"],
fields: {
title:{},
description:{},
item_title:{},
commentary_text:{}
})
当我在标题上找到匹配项时,title 方法会返回突出显示术语的标题文本。但是,我总是将 play_List_items 作为没有突出显示的哈希数组返回。
当我使用“to_a”进行序列化时,我看到在 _data 中有一个名为“highlight”的字段的散列,其中包括突出显示,但它只有匹配的字段,所以我不知道如何显示关联的 thumb_square (出现在_data.source中)与 item_title 一起突出显示。
我不知道这是否与耐嚼的宝石或一般的弹性搜索有关。