Django file upload with UpdateView

后端 未结 1 1443
粉色の甜心
粉色の甜心 2021-01-12 16:25

I tried a minimalistic django implementation of generic views to upload profile pictures.

views.py

class UpdateProfile(UpdateView):
    form_class =          


        
相关标签:
1条回答
  • 2021-01-12 17:03

    The problem is in your template. You haven't set enctype, so request.FILES will always be empty. It should be:

    <form action="" enctype="multipart/form-data" method="post">{% csrf_token %}
    
    0 讨论(0)
提交回复
热议问题