我在我的項目中使用可搜索插件。我有一個簡單的域,其中給出如下 Class User {
String title
String Description
int vote
Date date
}
static searchable = {
only: ['description','title','vote','d
域(只是簡單的例子): class House {
String address
String region
Long price
static searchable = { only = ['address', 'price', 'region'] }
}
我想通過地址以價格選擇搜索 搜索查詢是: "${address} AND price: [100 TO 1000]"
但是