When I am trying to send values in JsonResponse then The error is coming(object of type QuerySet is not JSON serializable )
def ajaxAgent(request):
data = CommCenter.objects.values()
responseData = { 'status': 'success', 'msg' : data}
return JsonResponse(responseData)