Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用链接- Jquery Autocomplete with Django,我添加了 django-autocomplete 搜索。现在我想在搜索框中将搜索结果限制为 5。任何人都可以帮助我做到这一点。
您可以限制查询结果:
def search_view(request): ... listado = Model.objects.filter( descripcion__istartswith=q ).order_by("descripcion")[:5] ...