使用 _sort 指定需要排序的字段, _order 指定排序的顺序,默认按照升序排序。
以下是不同的排序示例:
GET /posts?_sort=title&_order=asc # 按照title字段升序排序
GET /posts/1/comments?_sort=id&_order=desc # 按照id字段降序排序
GET /posts?_sort=userId,title&_order=desc,asc # 针对多个字段的排序,使用这种方式
1. GET /posts?_sort=title&_order=asc: 按照title字段升序排序。
访问路径:
https://jsonplaceholder.typicode.com/posts?_sort=title&_order=asc
2. GET /posts/1/comments?_sort=id&_order=desc: 获取按照id字段降序排序的结果集。
访问路径:
https://jsonplaceholder.typicode.com/posts/1/comments?_sort=id&_order=desc
3. GET /posts?_sort=userId,title&_order=desc,asc: 获取按照userId字段降序,title字段升序排序的结果集。
访问路径:
https://jsonplaceholder.typicode.com/posts?_sort=userId,title&_order=desc,asc