如何为 Plone 4 进行 RichTextValue 目录全文搜索
我使用富文本字段创建了灵巧内容类型 - “正文”。我想让我的 Plone 4.0.2 的“正文”全文可搜索。
我在主题中添加了catalog.xml,代码如下
我从 ZMI/portal/portal_catalog 收到错误消息“body_text RichTextValue 对象。(您是指 .raw 还是 .output?)”
如何更改 Catalog.xml 以使用 .output,我尝试过,但不起作用。
谢谢。
I created dexterity content type with Rich Text Field - "body text". I'd like to make "body text" full text searchable for my Plone 4.0.2.
I added catalog.xml in my theme, code below
I got error message from ZMI/portal/portal_catalog "body_text RichTextValue object. (Did you mean .raw or .output?) "
How can I change catalog.xml to use .output, I tried , but it doesn't work.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 plone.indexer 并在您的灵活性类型中提供您自己的索引器,以将自定义正文文本添加到 < code>SearchableText 索引(例如包括默认标题和描述),如下所示:
You could use plone.indexer and provide your own indexer inside your dexterity type to add your custom body text to the
SearchableText
index (including default title and description for example) like so:免责声明:我自己没有遇到过这个问题,所以这只是一个猜测。
Archetypes 和其他使用 SearchableText() 索引/访问器来填充 Plone 搜索的全文搜索索引。
您可能需要将 SearchableText() 方法添加到您的内容类型中,并使其返回您希望全文搜索拾取的所有串联文本。
Disclaimer: I have not encountered this issue myself, so this is just a guess.
Archetypes and others use SearchableText() index/accessor to populate the full text search index for Plone search.
You probably need to add SearchableText() method to your content type and make it return all the text concatenated which you want full text search to pick up.
Christoph 关于自定义索引器的建议是一个很好的建议。您还可以使用此插件:collective.dexteritytextindexer
Christoph's suggestion of a custom indexer is a good one. You can also use this add-on: collective.dexteritytextindexer