UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list
UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list

我使用的Django的DRF框架
在对数据进行分页展示是出现的警告

解决方法
方法一:
在需要进行查询的模型类中 增加ordering参数

class Meta:
ordering = [‘id’]

UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list

相关文章:

  • 2022-12-23
  • 2021-07-18
  • 2022-12-23
  • 2022-03-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-13
  • 2022-02-24
  • 2022-02-04
  • 2021-12-12
  • 2022-02-20
  • 2021-05-30
  • 2021-12-20
相关资源
相似解决方案