5.11.drf的搜索和排序
搜索
goods/views.py
The search behavior may be restricted by prepending various characters to the search_fields
.
'^' Starts-with search.
'=' Exact matches.
'@' Full-text search. (Currently only supported Django's PostgreSQL backend.)
'$' Regex search.
For example:
排序
Last updated
Was this helpful?