Django:想要创建一个可以上传和显示图像的应用程序

时间:2011-07-15 12:18:13

标签: python django image forms upload

我想创建一个可以上传和显示图片的django应用程序。但是,由于它无法正常工作,我在执行此操作时遇到了一些麻烦。当我尝试从我的表单上传图像时,会发生什么,它不会显示在我的列表中。所以我似乎在显示图像时遇到了问题。

这是我到目前为止所做的。

编辑 - 代码已更新:我已完成了一些需要进行的更改。现在还有一个问题。我的程序不是打印出图像,而是打印保存图像的目录。

例如,{{comment.photo}}将打印出路径C:/Users/AQUIL/Desktop/myproject/images/P1000992.JPG。但我想在屏幕上看到图像。如何将图像打印到屏幕上?

models.py

class Comment(models.Model):
    name = models.CharField(max_length = 40)
    datetime = models.DateTimeField(default=datetime.now)
    photo = models.ImageField(upload_to='C:/Users/AQUIL/Desktop/myproject/images', blank=True, null=True)
    note = models.TextField()
    def __unicode__(self):
        return unicode(self.name)

Views.py

def home(request):
    comments = None
    try:
        comments = Comment.objects.order_by('-datetime')
    except:
        return HttpResponseNotFound()
    return render_to_response('home.html', {'comments':comments}, context_instance=RequestContext(request)) 


def add_notes(request):
    comments = Comment.objects.all()
    if request.method == 'POST':
        form = CommentForm(request.POST or None, request.FILES)
        if form.is_valid():
            comments.datetime = datetime.now()
            form.save(True)
            return HttpResponseRedirect(reverse(home))
    else:
        form = CommentForm()
    return render_to_response('form.html', {'form':form,'comments':comments}, context_instance = RequestContext(request))

forms.py

class CommentForm(forms.ModelForm):
    class Meta:
        model = Comment
    exclude =('datetime')

home.html的

{% extends "base.html" %}

{% block content %}

<H2>List of Comments</H2>
<div style="overflow:auto;padding: 10px; border:1px solid black; height:150px; width:700px;">

{% for comment in comments %}
    {{comment.photo}}<br/>
    <b>Posted by: {{ comment.name }} Date: {{ comment.datetime.date }} Time: {{comment.datetime.time}}</b><br/>
    <div style="font-size:125%">{{ comment.note }}</div><br/>   
{% endfor %}
</div>
{% endblock %}

这是很多信息,但我希望这会有所帮助。 的 form.html

{% extends "base.html" %}
{% block content %}

<h3>Add Notes</h3>  
    <form  enctype="multipart/form-data"  action="" method="POST">{% csrf_token %}
        <table>
        {{form.as_table}}<br/>
        </table>
         <input type="submit" value="Save" STYLE="background-color:#E8E8E8; color:#181818 "/>
    </form>
{% endblock %}

2 个答案:

答案 0 :(得分:1)

首先,您的网址字符串应仅包含斜杠“/”符号,而不是“\”

其次,您可以将upload_to参数的本地路径用作:

upload_to='upload/'

然后在settings.py中正确设置MEDIA_ROOT值,请参阅docs

在你的情况下,它将是:

MEDIA_ROOT = 'C:/Users/AQUIL/Desktop/myproject/images/'

答案 1 :(得分:0)

在文档中阅读this

另外,我们可以看到表单的html代码吗?顺便说一句,如果你在文档中完全一样,那么你就可以解决这个问题...... enctype是基本的!