1

我正在尝试上传用户生成的图像,然后显示在我的 django web 应用程序中。图片正在上传到服务器,但我无法显示它。

模型.py

image = models.ImageField(blank=True, null=True, max_length=255, upload_to="images/")

设置.py

MEDIA_ROOT = '/home/user/webapps/static/'
MEDIA_URL = 'http://user.webfactional.com/static/'

例如,假设我上传了名为 Finland.gif 的文件。我可以看到上传的文件。但是,当我查看源代码时,我将图像的源代码视为“www.foo.com/accounts/profile/images/Finland.gif”,而不是应该是“http://user.webfactional”的静态图像 URL .com/static/images/Finland.gif”。关于我应该如何解决这个问题的任何建议?

4

2 回答 2

2

userprofile.image.url为您提供图片的完整网址

于 2012-09-25T07:19:07.777 回答
0

刚刚解决了...我需要包括:

http://user.webfactional.com/static/{{userprofile.image}}
于 2012-09-25T07:04:15.943 回答