“JsonResponse Django” Code-Antworten

Setzen Sie den HTTP -Antwortinhaltstyp Django

reponse = HttpResponse(content)
response['Content-Type'] = 'application/json' # or application/text, etc.

# one-line usage
reponse = HttpResponse(content, content_type:'application/json')
Lovely Coder

JsonResponse Django

from django.http import JsonResponse
return JsonResponse({'foo':'bar'})
Nihshreyas

Ähnliche Antworten wie “JsonResponse Django”

Fragen ähnlich wie “JsonResponse Django”

Weitere verwandte Antworten zu “JsonResponse Django” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen