Created
July 19, 2012 13:33
-
-
Save masci/3143930 to your computer and use it in GitHub Desktop.
Django JSONField
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from django.db import models | |
from django.core.serializers.json import DjangoJSONEncoder | |
from django.utils import simplejson as json | |
class JSONField(models.TextField): | |
""" | |
JSONField is a generic textfield that neatly serializes/unserializes | |
JSON objects seamlessly. | |
Django snippet #1478 | |
example: | |
class Page(models.Model): | |
data = JSONField(blank=True, null=True) | |
page = Page.objects.get(pk=5) | |
page.data = {'title': 'test', 'type': 3} | |
page.save() | |
""" | |
# Used so to_python() is called | |
__metaclass__ = models.SubfieldBase | |
def to_python(self, value): | |
"""Convert our string value to JSON after we load it from the DB""" | |
if value == "": | |
return None | |
try: | |
if isinstance(value, basestring): | |
return json.loads(value) | |
except ValueError: | |
pass | |
return value | |
def get_db_prep_save(self, value, *args, **kwargs): | |
"""Convert our JSON object to a string before we save""" | |
if value == "": | |
return None | |
if isinstance(value, dict): | |
value = json.dumps(value, cls=DjangoJSONEncoder) | |
return super(JSONField, self).get_db_prep_save(value, *args, **kwargs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment