搜索自定义节点' Drupal 中按字段?
在一个项目中使用 Drupal,我使用 CCK 制作了自定义节点类型。我希望能够根据节点具有的自定义字段搜索特定节点。假设我有一个节点类型 Article,它有一个字段“myfield”,我希望能够根据 myfield 字段搜索文章。我了解默认搜索模块允许在搜索中使用 type:MyNodeType 搜索节点类型,但我没有看到任何方法来限制搜索哪些字段。有什么建议吗?这是要变得疯狂的事情吗?感谢您的帮助。
Using Drupal on a project which I made custom node types in using the CCK. I want to be able to search the specific node based on a custom field the node has. So let's say I have this node type Article which has a field "myfield", I want to be able to search for Articles based on the myfield field. I understand the default search module allows for searching of node types using the type:MyNodeType in the search, but I did not see any way to limit which fields are searched. Any tips? Is this something that is going to get crazy? Appreciate the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
默认搜索无法按特定字段进行过滤。
你有几个选择。
The default search cannot filter by specific fields.
You have a couple options.
查看 CCK Facets 模块。有关此模块的更多详细信息(来自其项目页面):
Checkout the CCK Facets module. Some more details about this module (from its project page):
为此,我使用搜索 API 和搜索 API DB 模块以及视图。
这是一篇很好的如何文章 。
I use the Search API and Search API DB modules along wth Views for this.
This is a nice how to article.