我如何在 heroku 上托管的 Django Web 应用程序中解决这个问题?
how can i solve this issue in my Django web application hosted on heroku?
当用户将照片上传为 post 时,它会在主页上正确显示,但过了一段时间后,当用户重新访问该网站时,he\she post 会显示所有照片显示不正常,不知道是什么问题?
我该如何解决?
您不能在 Heroku 中存储上传的文件(图像)。当您重新启动或重新部署 Heroku 时,这些将丢失。如果你想在你的项目中支持上传功能,你可以使用Amazon S3 to to that. And you can use this library django-storages
当用户将照片上传为 post 时,它会在主页上正确显示,但过了一段时间后,当用户重新访问该网站时,he\she post 会显示所有照片显示不正常,不知道是什么问题?
我该如何解决?
您不能在 Heroku 中存储上传的文件(图像)。当您重新启动或重新部署 Heroku 时,这些将丢失。如果你想在你的项目中支持上传功能,你可以使用Amazon S3 to to that. And you can use this library django-storages