Удаление всех документов в коллекции MongoDB через Django backend и Angular frontend

Мне удалось написать код для добавления клиента в коллекцию MongoDB из метода сервиса Angular в http-функцию Django следующим образом:

const httpOptions = {
  headers: new HttpHeaders({
    'Content-Type': 'application/json',
    'Accept': 'application/json'
  }),
  withCredentials: false
}

@Injectable()
export class MongoService {

  myApiBaseUrl = "http://localhost:8000/mydjangobaselink/";

  constructor(private httpClient: HttpClient) { }

  addCustomer(customerFormInfo: Customer): Observable<Customer> {
    return this.httpClient.post<Customer>(`${this.myApiBaseUrl}`, JSON.stringify(customerData), httpOptions);
  }

  deleteCustomer(): Observable<Customer> {
    return this.httpClient.delete<Customer>(`${this.myApiBaseUrl}`);
  }
}

@csrf_exempt
@api_view(['GET', 'POST', 'DELETE'])
def handle_customer(request):

    if request.method == 'POST':
        try:
            customer_data = JSONParser().parse(request)
            customer_serializer = CustomerModelSerializer(data=customer_data)
            if customer_serializer.is_valid():
                customer_serializer.save()

                # Write customer data to MongoDB.
                collection_name.insert_one(customer_serializer.data)

                response = {
                    'message': "Successfully uploaded a customer with id = %d" % customer_serializer.data.get('id'),
                    'customers': [customer_serializer.data],
                    'error': ""
                }
                return JsonResponse(response, status=status.HTTP_201_CREATED)
            else:
                error = {
                    'message': "Can not upload successfully!",
                    'customers': "[]",
                    'error': customer_serializer.errors
                }
                return JsonResponse(error, status=status.HTTP_400_BAD_REQUEST)
        except:
            exceptionError = {
                'message': "Can not upload successfully!",
                'customers': "[]",
                'error': "Having an exception!"
            }
            return JsonResponse(exceptionError, status=status.HTTP_500_INTERNAL_SERVER_ERROR)

    elif request.method == 'DELETE':
        try:
            CustomerModel.objects.all().delete()

            # Delete customer data from MongoDB.
            collection_name.deleteMany({})

            return HttpResponse(status=status.HTTP_204_NO_CONTENT)
        except:
            exceptionError = {
                'message': "Can not delete successfully!",
                'customers': "[]",
                'error': "Having an exception!"
            }
            return JsonResponse(exceptionError, status=status.HTTP_500_INTERNAL_SERVER_ERROR)

Метод POST работает нормально, и я вижу добавленный документ в моем MongoDB Compass, но когда я пытаюсь удалить, я получаю:

DELETE http://localhost:8000/mydjangobaselink/ 500 (Internal Server Error)

Все сообщения и статьи, которые я видел, касаются проблем связи в браузере, локальном хосте и т.д... но учитывая, что мой метод постинга работает нормально, я не думаю, что это моя проблема. Также, в Postman я получаю Can not delete successfully!

Может ли кто-нибудь понять, в чем может быть дело, что я не могу удалить из базы данных?

Попробуйте с collection_name.delete_many({})

https://pymongo.readthedocs.io/en/stable/api/pymongo/collection.html#pymongo.collection.Collection.delete_many

Вернуться на верх