4. 排序
为了提供易于理解的示例,本指南中将使用以下 URL
http://<server name>/api/v2/groups/
要指定返回的 {{ model_verbose_name_plural }} 按特定顺序排列,请在 GET 请求上使用 order_by
查询字符串参数。
http://<server name>/api/v2/model_verbose_name_plural?order_by={{ order_field }}
在字段名前添加一个连字符 (-
) 表示反向排序
http://<server name>/api/v2/model_verbose_name_plural?order_by=-{{ order_field }}
多个排序字段可以通过逗号 (,
) 分隔来指定
http://<server name>/api/v2/model_verbose_name_plural?order_by={{ order_field }},some_other_field