我正在尝试创建一个搜索表单,但它不起作用。这是我的代码:
class LocationSearchMixin(object):
def get_queryset(self):
q = self.request.GET.get('q')
if q is None:
return queryset
class StoreListView(LocationSearchMixin, ListView):
model = Store
<form action="" method="GET">
<input type="text" name="q" />
<button type="submit">search</button>
</form>