7

我在从我的 Django 应用程序提供用户上传的文件时遇到一些问题:

来自models.py:

class Picture (models.Model):

    title = models.CharField(max_length=48)

    date_added = models.DateTimeField(auto_now=True)

    content = models.ImageField(upload_to='pictures')

从 Django 管理员,文件被上传到 user_res/pictures/ 文件夹。

从项目的settings.py:

MEDIA_ROOT = 'user_res'

MEDIA_URL = '/user_res/'

STATIC_ROOT = ''

STATIC_URL = '/static/'

每次我尝试引用静态资源(即 css 或 js 文件)时,使用诸如

http://localhost:8000/static/<subfolder>/main.css.

但是,我无法访问用户上传的文件(这些文件是由管理界面在 user_res/pictures 文件夹中使用相对 URL 创建的,例如

user_res/pictures/test.jpg

URL 是使用 Django 图片模型可调用的这行代码动态创建的:

return '<img src="{}"/>'.format(self.content.url)

我在 url.py 文件中没有用于静态或媒体文件的专用 url-s。

有人知道如何让 Django 为媒体文件提供服务吗?我知道对于实时环境,我需要配置一个 http 服务器来为该特定目录提供服务,但现在我想维护一个轻量级开发套件。

谢谢你。

4

2 回答 2

7

编辑您的 urls.py 文件,如下所示。

from django.conf import settings
from django.conf.urls.static import static

urlpatterns = patterns('',
    # ... the rest of your URLconf goes here ...
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

编辑你的项目 settings.py 看起来像:

#Rest of the settings
MEDIA_URL = '/media/'
MEDIA_ROOT = 'media'
STATIC_ROOT = ''
STATIC_URL = '/static/'

请仔细阅读官方 Django 文档关于服务用户上传的文件。链接到文档:https ://docs.djangoproject.com/en/1.5/howto/static-files/#serving-files-uploaded-by-a-user

于 2014-07-08T08:30:41.153 回答
0

我认为 url 属性返回一个相对 URL(Django 的 FileField 文档),所以你应该有:

return '<img src="{}"/>'.format(MEDIA_URL + self.content.url)

相对 URL 不起作用,因为访问“http://localhost/books/”的用户将请求“http://localhost/books/user_res/pictures/test.jpg”。

于 2012-12-16T12:48:51.377 回答