Django Photologue 教程
我很难理解摄影记录到底是如何工作的。 有人知道我可以通过 Django-Photologue 显示画廊的示例项目教程吗?图像链接存储在数据库中的什么位置?
或者我怎样才能在 Django 中实现这一点? 或者还有什么可以创建像样的照片显示?
谢谢你的时间!
I have a hard time understanding how photologue works exactly.
Is anybody aware of a Example Project Tutorial where I can display a gallery via Django-Photologue. Where Imagelinks are stored in a database?
Or how can I achieve that in Django?
Or what else is out there to create a decent Photo Display?
Thanks for the time!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
开始使用 photologue 的最佳方法是启动一个新的 django 项目,并按照安装说明。然后,加载 django admin 并开始添加照片和创建图库。这样你应该能够很好地理解 Photologue。
Photologue 的概念是拥有不同照片尺寸和效果的图像库。如果您想展示图片库,那就太好了。如果您希望将图像集成到自己的应用程序中,您可能会发现 ImageKit 更有用。我认为它基于 Photologue,但它不是为您提供自动照片库,而是提供了可用于以编程方式管理照片的挂钩。
The best way to get started with photologue is to start a new django project, and follow the installation instructions. Then, load up the django admin and start adding photos and creating galleries. You should be able to get a good understanding of Photologue that way.
Photologue is based around the concept of having gallerys of images with different photo sizes and effects. It's great if you want to show a gallery of images. If you are looking to intergrate images into your own apps, you might find ImageKit much more useful. I think it's based on Photologue, but instead of giving you automated photo galleries it provides hooks that you can use to do manage photos programmatically.
这是 photologue 作者的示例项目:
https://github.com/ jdriscoll/django-photologue/tree/master/example_project
Here is an example project by the author of photologue:
https://github.com/jdriscoll/django-photologue/tree/master/example_project