自定义 Django 存储
我有一个网页,人们可以在其中上传自己的图像,我想将它们存储在可销售的存储中。我愿意使用 Amazon S3,但后来我决定使用自己的文件服务器和 Web 服务器来提供静态内容(图像),
但我不知道如何执行此操作。正确的方法是什么?我应该使用什么自定义 Django 存储?我如何将图像上传到这些文件服务器?
I have a web page where people can upload their own images and I want to store them in a salable storage. I was willing to use Amazon S3, but later I decided to use my own file servers with web servers for serving static content (images)
But I'm not sure how to do this. What is the correct way to do it and what custom Django storage should I use? How will I upload images to these file servers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个开始:编写自定义存储系统。
Here's a start: Writing a custom storage system.