本文介绍了Django - 显示ImageField的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚开始使用django,我还没有找到很多关于如何显示imageField的信息,所以我这样做:
i just start to use django and i haven't found a lot of info on how to display an imageField, so i made this:
models.py
models.py
class Car(models.Model):
name = models.CharField(max_length=255)
price = models.DecimalField(max_digits=5, decimal_places=2)
photo = models.ImageField(upload_to='site_media')
views.py
def image(request):
carx = Car()
variables = RequestContext(request,{
'carx':carx
})
return render_to_response('image.html',variables)
image.html
image.html
{% extends "base.html" %}
{% block content %}
<img src=carx />
{% endblock %}
我已经保存了一个图像,因为终端,我知道是在那里,如果在image.html中执行此操作:
I already save an image since terminal and i know is there, also if a do this in image.html:
{% block content %}
{{ carx }}
{% endblock %}
输出是:Car对象
任何人都可以告诉我我的错误在哪里?
Can anyone tell me where is my error?
非常感谢。
推荐答案
一个 ImageField
包含一个 url
属性,您可以在您的模板可以呈现正确的HTML。
An ImageField
contains a url
attribute, which you can use in your templates to render the proper HTML.
{% block content %}
<img src="{{ carx.photo.url }}">
{% endblock %}
这篇关于Django - 显示ImageField的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!