Wednesday, January 8, 2020

Re: Make a Django query filter at runtime

Hi Ezequias,

You could use a dict:

data = {
  'name': 'John',
  'age': 42,
}

model.filter(**data)

Best Regards!

Em qua., 8 de jan. de 2020 às 18:09, Ezequias Rocha <ezequias.rocha@gmail.com> escreveu:
Hi everyone

I am in a doubt about creating django filters dynamically.

All you know a filter is made by using the parameters like:

model.filter(name='John', age=42)

But if I can't type all fields and values at design time but at runtime how to do that?

Best regards
Ezequias

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/9c843d02-235f-411f-8e83-7fea2156893b%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFwLvGHneKLY8YJroSyxQwjorVB_N6pT%3DnTEe%2Bm%2BG60ZXgeUVQ%40mail.gmail.com.

No comments:

Post a Comment