2. 分页查询post http://180.76.96.218:9200/film/dongzuo/_search/
{
"from": 0,
"size": 2,
"_source": {
"include": [
"title",
"price"
]
}
}
3.排序查询post
{
"sort": [
{
"publishDate": {
"order": "desc"
}
}
]
}
4.简单查询post http://180.76.96.218:9200/film/dongzuo/_search/
{
"query": {
"match": {
"title": "战"
}
}
}
5.高亮显示post
{
"query": {
"match": {
"title": "战"
}
},
"_source": {
"include": [
"title",
"price"
]
},
"highlight": {
"fields": {
"title": {}
}
}
}