我对可搜索插件有一些疑问:
我有两个域:
class Ads {
static searchable = true
String fromCity
String toCity
User user
static constraints = {
}
}
class User {
String username
String password
}
而且我开发了自己的搜索页面,其中包含两个字段 (fromCity,toCity)。有类似的东西:
def listResults = searchableService.search("NewYork","Miami")
所以我想知道如何将我的搜索方法提供给 Criteria Field。
def srchResults = searchableService.search(??????)
如果有人可以帮助我做到这一点,我将不胜感激。