0

有没有办法在 Orchard 中配置 lucene.net 以在 Orchard 根目录下的目录中搜索 word 文档的内容。有没有办法让它索引另一个网站。

4

1 回答 1

0

如果您可以以某种方式将内容添加为 Orchard 中的内容项,则可以OnIndexingContentHandler.

这样的事情应该这样做:

public class WordDocumentContentHandler: ContentHandler {
    public WordDocumentContentHandler() {
        OnIndexing<ContentPart>((context, part) => {
            // Detect if the part has the field containing the URL to the document
            // and analyze it here. 
        });
    }
}
于 2012-12-10T13:37:38.507 回答