Django file upload with UpdateView

后端 未结 1 1466
粉色の甜心
粉色の甜心 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:

    {% csrf_token %}

    0 讨论(0)
提交回复
热议问题