My response code
from rest_framework.response import Response
import json
responseData = { 'success' : True }
return Response(json.dumps(responseData))
How it appears on doing curl
or accessing the response through the browser.
"{\"success\": true}"
Why the forward slashes? How do I remove them?
Those backslashes are escape characters. They are escaping the special characters inside of the string associated with JSON response. You have to use JSON. parse to parse that JSON string into a JSON object.
How do you escape a forward slash in JSON? Backspace to be replaced with \b. Form feed to be replaced with \f. Newline to be replaced with \n.
The JsonResponse transforms the data you pass to it to a JSON string and sets the content type HTTP header to application/json . To return JSON data from a Django view you swap out the HttpResponse for JsonResponse and pass it the data that needs to be transformed to JSON.
Using replace() Function Along with The json. Loads() Function to Remove Backslash from Json String in Python.
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 instantiateResponse
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With