Django Image Uploading - Uploads do not work

后端 未结 1 1933
挽巷
挽巷 2021-01-26 07:07

I am currently working on a Django app and I have come across an error that I am unsure how to fix. I have looked about online but still haven\'t found an answer that suits my c

相关标签:
1条回答
  • 2021-01-26 07:34

    You need to add enctype="multipart/form-data" to your <form> element in the template, otherwise the browser can't send files to the server.

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