对数据进行多个过滤
我希望对数据有多个过滤器。就像首先我想按日期字段过滤,然后按类型字段过滤,然后按其他字段过滤......尽可能多次。我必须传递 url 中的字段和值,并且它必须应用过滤器并将数据传递到下一个过滤器。
I want have have multiple filters on the data. like first i want to filter by date field and then by type field and then by some other field .... as many times as possible. i must pass on the field and value in the url and it must apply the filter and pass the data to the next filter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用逗号分隔的条件用 and 组合在一起:
您可以使用 Python 的关键字扩展来传递它们:
Conditions separated by commas are anded together:
You can use Python's keyword expansion to pass them:
您可能需要 django-filter。
You probably want django-filter.