Hi,
What is
On Monday, April 3, 2017 at 10:34:18 AM UTC-4, Martin Peveri wrote:
-- What is
JSONField? Is it part of Django or from a third party package?
On Monday, April 3, 2017 at 10:34:18 AM UTC-4, Martin Peveri wrote:
Hi, I have this model:
class ItemCampaign(models.Model):campaign = models.ForeignKey(Campaign, related_name="itemscampaign", verbose_name="Item campaña")data = JSONField(default=dict)def __str__(self):With a record with this data:
[{'number': '1160188479', 'id': 0, 'content': 'hello', 'processed' : True}, {'number':'1160188479' , 'id': 1, 'content' : 'hello', 'processed': False}, {'number': '1160188479' , 'id': 2,'content': 'hello', 'processed': False}, {'number': '1162341721', 'id' : 3, 'content': 'hello', 'processed' : False}, {'number':'1162341721', 'id': 4, ' content' : 'hello', 'processed': False}, {'number': '1162341721' , 'id': 5, 'content' : 'hello', 'processed': False}]
I want filter this list dict, like this:
c.itemscampaign.filter(data__processed=True) But not work. That does not give me back anything.The content type of data is:
>>> type(c.itemscampaign.all()[0].data )
<class 'list'>I understand that it has to be a dict, but how can I insert many dictionaries in the field, as I have in my data if it is not in a list?Thanks!
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/19039bdc-6c9d-405f-95a7-34c78cf6a715%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment