0
我有關於搜索插件的一些問題檢索插件:的Grails與標準
我有兩個域名:
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")
所以我想知道我可以給我的搜索方法這個標準領域。
def srchResults = searchableService.search(??????)
如果有人能幫我做到這一點,我將非常感激。