作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在http://grails.org/Searchable+Plugin+-+Mapping+-+Class+Property+Mapping上阅读grails可搜索插件的标准文档,其中描述了可搜索引用和组件。
在页面上讨论的经典场景中,如果我有
class News {
static searchable = true
static hasMany = [comments: Comment]
String text
}
class Comment {
static searchable = true
String text
}
News.search("a phrase", params)
搜索,那么在此查询中需要更改什么,以便在新闻以及新闻评论中搜索“短语”?
最佳答案
尝试将comments
配置为component
:
class News {
static searchable = true
static hasMany = [comments: Comment]
String text
static searchable = {
comments component: [prefix:'comment']
}
}
News.search("componenttext:phrase", params)
搜索特定的注释,但是afaik,
News.search("a phrase", params)
还将搜索注释。
关于grails - grails内部hasMany类中的searcheable插件搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12650402/
我是一名优秀的程序员,十分优秀!