0
JsonResponseにサーバーの応答コードを追加することはできますか?私はいくつかの状況では404で返信するためにサーバーが必要です。Django - JsonResponseのサーバーコードの応答
私は、ビュー
def CreateOrAuth(request):
try:
username = request.POST.get("username")
queryset = User.objects.get(username=username)
except Exception as e:
return JsonResponse({'status': 'user with {} not exist'.format(username)})
次があると私はここに404サーバーのコードはい、できます
をこの答えをチェックしてください:// stackoverflowの:[DjangoのJSONレスポンスエラーステータス](HTTPのhttp://stackoverflow.com/a/35059936/3065081 –
が重複する可能性が。 com/questions/35059916/django-json-response-error-status) – GwynBleidD