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