0

我有一个功能可以搜索 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。

4

1 回答 1

1

因此,您的国家/地区应由索引器标记。作为一个多列表,它们将由 GUID 标记。使用上面的代码通过 GUID 搜索单个国家/地区应该可以。但是,如果您要搜索多个国家/地区,其中任何传入的国家/地区都可能触发匹配,您需要以不同的方式构建查询。

CombinedQuery query = new CombinedQuery();

//apply other filters here to query if need be

//and country filter by creating a new clause (combinedquery) and "ORing" within it (QueryOccurance.Should)
CombinedQuery query3 = new  CombinedQuery();
//here you would actually iterate over your country list
query3.Add(new FieldQuery("countries", country1GUID), QueryOccurance.Should);
query3.Add(new FieldQuery("countries", country2GUID), QueryOccurance.Should);
query.Add(query3, QueryOccurance.Must);
于 2012-09-14T19:32:20.733 回答