if 'category' and 'something' and 'from_price' and 'to_price' in request.GET:
category = request.GET['category']
something = request.GET['something']
from_price = request.GET['from_price']
to_price = request.GET['to_price']
d = Data.objects.filter(Q(category = category)| Q(something = something)|Q(price__gt=from_price)|Q(price__lt=to_price))
このデータをフィルタリングする方法 (たとえば) のみを入力した場合はto_price
? (すべてのフィールドではありません)
コードがうまく動かない