15
Tải lên tệp khung công tác phần còn lại Django
Tôi đang sử dụng Django Rest Framework và AngularJs để tải tệp lên. Tệp xem của tôi trông như thế này: class ProductList(APIView): authentication_classes = (authentication.TokenAuthentication,) def get(self,request): if request.user.is_authenticated(): userCompanyId = request.user.get_profile().companyId products = Product.objects.filter(company = userCompanyId) serializer = ProductSerializer(products,many=True) return Response(serializer.data) def post(self,request): serializer = ProductSerializer(data=request.DATA, files=request.FILES) if …