Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:python-django/jsonresponse-no-content-type
Language: Python
Severity: Notice
Category: Best Practices
Description
The JsonResponse is already setting the content type of the response. Do not redefine the content type being sent.
Non-Compliant Code Examples
importjsonfromdjango.httpimportHttpResponseresponse_data={}response_data['result']='error'response_data['message']='Some error message'returnJsonResponse(response_data,content_type="application/json")# content-type is not necessary for JsonResponse
Compliant Code Examples
importjsonfromdjango.httpimportHttpResponseresponse_data={}response_data['result']='error'response_data['message']='Some error message'returnJsonResponse(response_data)# content-type is not necessary for JsonResponse
Seamless integrations. Try Datadog Code Analysis
Datadog Code Analysis
Try this rule and analyze your code with Datadog Code Analysis
How to use this rule
1
2
rulesets:- python-django # Rules to enforce Python django.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Analysis scans to your CI pipelines