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
シームレスな統合。 Datadog Code Security をお試しください
Datadog Code Security
このルールを試し、Datadog Code Security でコードを解析する
このルールの使用方法
1
2
rulesets:- python-django # Rules to enforce Python django.