如何访问 Compas 搜索框架中的子对象属性?
我有以下代码(在 grails 和可搜索插件又名指南针中):
class Topic {
String name;
static searchable = true;
}
class Question extends BaseEntity {
String question;
static searchable = true;
static hasMany = [
topics: Topic
]
}
如何搜索具有特定主题 id 的问题?
像 Question.search("topics#id:12") 或 Question.search("topics.id:12") 这样的东西不起作用。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“问题”中更改您的可搜索块,使其看起来像这样:
在“主题”中,如果您不希望主题作为根搜索元素返回,则
启动 grails 并添加一些项目,然后从 http://www.getopt.org/luke/
并打开您的问题域对象的索引,该索引位于 ~/.grails/projects/projName/searchable-index/'env'/index/question
如果您检查文档选项卡,您将看到嵌入在索引中的术语类似于 $/Question/topics
这应该为您提供放入 Question.search 的路径,例如:
Question.search('$/Question/topics/id:1')
Chage your searchable block in Question so it looks like this:
and in Topic if you dont want Topics returned as root search elements
Fire up grails and add a few items, then download Luke from http://www.getopt.org/luke/
and open the index for your Question domain object which will be at ~/.grails/projects/projName/searchable-index/'env'/index/question
If you check the documents tab you will see the terms embedded in the index which will be something like $/Question/topics
This should give you the path to put in your Question.search, something like:
Question.search('$/Question/topics/id:1')