models.py:
class UserProfile(models.Model):
photo = models.ImageField(upload_to = get_upload_file_name,
storage = OverwriteStorage(),
default = os.path.join(settings.STATIC_ROOT,'images','generic_profile_photo.jpg'),
height_field = 'photo_height',
width_field = 'photo_width')
photo_height = models.PositiveIntegerField(blank = True, default = 0)
photo_width = models.PositiveIntegerField(blank = True, default = 0)
views.py:
def EditProfile(request):
register_generator()
source_file = UserProfile.objects.get(user = request.user).photo
args = {}
args.update(csrf(request))
args.update({'source_file' : source_file})
在模板中的某个地方:
{% generateimage 'user_profile:thumbnail' source=source_file %}
我收到错误消息: UserProfile匹配查询不存在。
在这一行:
source_file = UserProfile.objects.get(user = request.user).photo
问题是ImageField的默认属性不起作用。因此,对象不是在我的模型中创建的。如何正确使用此属性?如果我省略此属性,则创建对象时没有错误。我需要通过绝对路径还是相对路径? 我正在使用django-imagekit来调整图像大小,然后再显示它:http://django-imagekit.readthedocs.org/en/latest/
答案 0 :(得分:15)
如果您没有定义默认属性,图片上传是否成功?当我在自己的django项目中实现ImageField时,我没有使用默认属性。相反,我写了这个方法来获取默认图像的路径:
def image_url(self):
"""
Returns the URL of the image associated with this Object.
If an image hasn't been uploaded yet, it returns a stock image
:returns: str -- the image url
"""
if self.image and hasattr(self.image, 'url'):
return self.image.url
else:
return '/static/images/sample.jpg'
然后在模板中,显示图像:
<img src="{{ MyObject.image_url }}" alt="MyObject's Image">
编辑:简单的例子
在views.py
中def ExampleView(request):
profile = UserProfile.objects.get(user = request.user)
return render(request, 'ExampleTemplate.html', { 'MyObject' : profile } )
然后在模板中包含代码
<img src="{{ MyObject.image_url }}" alt="MyObject's Image">
会显示图像。
同样对于错误&#39; UserProfile匹配查询不存在。&#39;我假设你已经在UserProfile模型的某处定义了与User模型的外键关系,对吗?