如何在TYPO3中使用indexed_search索引自定义数据库记录?

问题描述 投票:0回答:1

如何在 TYPO3 中索引自定义数据库记录?我尝试使用索引搜索,将选项“Table to index”设置为配置中相应的数据库。但这没有用。我在文档中找不到帮助。我还检查了扩展 ke_search,但也找不到如何索引自定义记录。有什么想法如何去做吗?

search indexing typo3 record
1个回答
0
投票

您可以使用EXT:crawler来索引自定义记录。

配置示例:

tx_crawler.crawlerCfg.paramSets {
   tx_news = &tx_news_pi1[controller]=News&tx_news_pi1[action]=detail&tx_news_pi1[news]=[_TABLE:tx_news_domain_model_news; _PID:57; _WHERE: hidden = 0]
   tx_news {
     pidsOnly = 58
   }
}

TER:https://extensions.typo3.org/extension/crawler

文档:https://docs.typo3.org/p/tomasnorre/crawler/11.0/en-us/Introduction/Index.html

© www.soinside.com 2019 - 2024. All rights reserved.