我有一个功能可以搜索 Sitecore 内容项中的一些文章并给我价值。到目前为止,我已经建立了我的索引,它显示在我的 IndexViewer 中。但是函数的返回是 0。我查看了这个链接:http ://sitecoregadgets.blogspot.com/2009/11/working-with-lucene-search-index-in_25.html了解更多信息。
protected IEnumerable<Item> ShowHomePageNews(int numOfArticles, string stringofCountries)
{
List<Item> items = new List<Item>();
Sitecore.Search.Index indx = SearchManager.GetIndex("newsArticles");
using (IndexSearchContext searchContext = indx.CreateSearchContext())
{
var db = Sitecore.Context.Database;
CombinedQuery query = new CombinedQuery();
QueryBase catQuery = new FieldQuery("countries", stringofCountries); //FieldName, FieldValue.
SearchHits results = searchContext.Search(catQuery); //Searching the content items by fields.
SearchResultCollection result = results.FetchResults(0, numOfArticles);
foreach (SearchResult i in result)
{
items = result
.Where(r => !r.Title.StartsWith("*"))
.Select(r => db.GetItem(new Sitecore.Data.ItemUri(r.Url).ToDataUri()))
.ToList();
//Lucene.Net.Documents.Field url = i.Document.GetField("_url");
//Sitecore.Data.ItemUri itemUri = new Sitecore.Data.ItemUri(url.StringValue());
//Sitecore.Data.Items.Item item = Sitecore.Context.Database.GetItem(itemUri.ToDataUri());
//items.Add(item);
}
}
return items;
}
在这里结果是0。我在这里做错了什么?
这是我在 IndexViewer 中看到的快照:
编辑:
我在“catQuery”中传递了一个“NZ”,我得到了结果。因为在我的索引查看器中,我看到了 Field Name = _name,其中包含 NZ。我得到了这个部分。但是,我希望我的每个字段都被索引。我在 IndexViewer 中只看到 3 个字段:_url、_group 和 _name。