#26110: Admin form escapes postgres JSONField on ValidationError
----------------------------------+--------------------------------------
     Reporter:  Rubén Díaz        |                    Owner:  nobody
         Type:  Bug               |                   Status:  closed
    Component:  contrib.admin     |                  Version:  1.9
     Severity:  Normal            |               Resolution:  duplicate
     Keywords:  jsonfield, admin  |             Triage Stage:  Unreviewed
    Has patch:  0                 |      Needs documentation:  0
  Needs tests:  0                 |  Patch needs improvement:  0
Easy pickings:  0                 |                    UI/UX:  0
----------------------------------+--------------------------------------

Comment (by Laurynas Riliskis):

 I am running Django 2 and encounter the same problem.  The same results
 are obtained is called though the admin interface.

 {{{
 >>> p = JSONTest.objects.get(instance="4550d7f3a28c4081af5b3ff5ac62ab60")
 >>> p.data
 '{}'
 >>> p.save()
 >>> p = JSONTest.objects.get(instance="4550d7f3a28c4081af5b3ff5ac62ab60")
 >>> p.data
 '"{}"'
 >>> p.save()
 >>> p = JSONTest.objects.get(instance="4550d7f3a28c4081af5b3ff5ac62ab60")
 >>> p.data
 '"\\"{}\\""'
 >>> p.save()
 >>> p = JSONTest.objects.get(instance="4550d7f3a28c4081af5b3ff5ac62ab60")
 >>> p.data
 '"\\"\\\\\\"{}\\\\\\"\\""'
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/26110#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.1cb491d2fda5f5b19e793798378928cf%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to