I have an exception which gives me error from form like::
except ValidationError as e:
return JsonResponse(e, safe=False)
It is giveing me the error
ValidationError({'age': [u'This field is required.'], 'name': [u'This field is required.']}) is not JSON serializable
Why I am getting this error and how can I make it work .. Any idea ??