Django 管理员找不到媒体文件
在我设置这样的设置后,我无法为我的 django 管理员提供媒体文件:
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), "media")
MEDIA_URL = '/media/'
关于我的设置,我读到的内容是“管理员需要将其 CSS、图像和 javascript 代码包含在这个位置 - 你必须从 django/contrib/admin/media/ 复制它们。”
必须复制媒体文件似乎是错误的方法。最好的方法是什么?
I'm unable to get the media files served up for my django admin after I set my settings like this:
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), "media")
MEDIA_URL = '/media/'
In reference to having my settings like this, something I read said "Admin will need to have its CSS, images and javascript code in this location — you’ll have to copy them from django/contrib/admin/media/."
Having to copy the media files seems like the wrong way to do it. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 Django 文件进行符号链接而不是复制它们。
I symlink the Django files instead of copying them.