[Fixed]-Handling JSON Response With Django

1👍

There is Postgres specific ArrayField in django. Also you may transform resceived array to string and store it in CommaSeparatedIntegerField which is db agnostic.

PS: I believe you are using models in wrong way. Field classes should be accessed via ‘models‘ module, but not ‘fileds‘ module (i.e.
models.BooleanField instead of
fields.BooleanField)

👤alxgrh

Leave a comment