Highlights プロパティには、完全なフィールド値の一部のみが含まれています。完全なフィールド値を表示したい場合は、ハイライトをフィールド値にマージする必要があります。
ここで私のために働くスニペット:
public static string Highlight<T>(string fieldName, SearchResult<T> fromResult) where T : class
{
var value = fromResult.Document.GetType().GetProperty(fieldName).GetValue(fromResult.Document, null) as string;
if (fromResult.Highlights == null || !fromResult.Highlights.ContainsKey(fieldName))
{
return value);
}
var highlights = fromResult.Highlights[fieldName];
var hits = highlights
.Select(h => h.Replace("<b>", string.Empty).Replace("</b>", string.Empty))
.ToList();
for (int i = 0; i < highlights.Count; i++)
{
value = value.Replace(hits[i], highlights[i]);
}
return value;
}
ASP.Net MVC の場合
public static MvcHtmlString Highlight<T>(this HtmlHelper htmlHelper, string fieldName, SearchResult<T> fromResult) where T : class
{
var value = fromResult.Document.GetType().GetProperty(fieldName).GetValue(fromResult.Document, null) as string;
if (fromResult.Highlights == null || !fromResult.Highlights.ContainsKey(fieldName))
{
return MvcHtmlString.Create(htmlHelper.Encode(value));
}
var highlights = fromResult.Highlights[fieldName];
var hits = highlights
.Select(h => h.Replace("<b>", string.Empty).Replace("</b>", string.Empty))
.ToList();
for (int i = 0; i < highlights.Count; i++)
{
value = value.Replace(hits[i], highlights[i]);
}
return MvcHtmlString.Create(htmlHelper.Encode(value).Replace("<b>", "<b>").Replace("</b>", "</b>"));
}
ビューでは、次のように使用できます。
@model SearchResult<MySearchDocument>
@Html.Highlight(nameof(MySearchDocument.Name), Model)