def fanc(request): non, created = Order.objects.get_or_create(user=request.user) # no attribute user data = json.loads(request.body) # no attribute body . . . return HttpResponse(status=200) fanc(request)
В результате чего выводятся следующие ошибки:
AttributeError: module ‘django.http.request’ has no attribute ‘user’
AttributeError: module ‘django.http.request’ has no attribute ‘body’
Если не передавать при вызове request, то будет TypeError: fanc() missing 1 required positional argument: ‘request’
Как мне исправить AttributeError?