[Solved]-Why does JSON returned from the django rest framework have forward slashes in the response?

23👍

You are rendering the data to JSON twice. Remove your json.dumps() call.

From the Django REST documentation:

Unlike regular HttpResponse objects, you do not instantiate Response objects with rendered content. Instead you pass in unrendered data, which may consist of any Python primitives.

The Django REST framework then takes care of producing JSON for you. Since you gave it a string, that string was JSON encoded again:

>>> import json
>>> responseData = { 'success' : True }
>>> print json.dumps(responseData)
{"success": true}
>>> print json.dumps(json.dumps(responseData))
"{\"success\": true}"

The framework uses Content Negotiation to determine what serialisation format to use; that way your API clients can also request that the data is encoded as YAML or XML, for example.

Also see the Responses documentation:

REST framework supports HTTP content negotiation by providing a Response class which allows you to return content that can be rendered into multiple content types, depending on the client request.

Leave a comment