from django.http import JsonResponse return JsonResponse({'message':'This is the message'})
from django.http import JsonResponse def index(request): return JsonResponse({'text': 'Some JSON data is rendering'})