图像没有显示出来。 Django的

时间:2012-08-23 17:51:59

标签: html django django-templates

无法找到我做错的事(我猜应该是一些语法错误)。我的照片没有显示出来。我收到了“没有文件”。

的HTML

    <!-- RECENTLY ADDED FILES -->
        <div class="buttom-box floatleft">
            <h3>Recently Added Files</h3>
                <p>New class papers. Now you can enjoy and study them</p>
                <br>
                {% if recent_files %}
                    {% for file in recent_files %}
                        <img src="{{ MEDIA_URL }}{{ file.image }}" alt="Sample 1" width="125" height="125" />
                    {% endfor %}
                {% else %}
                    <p>NO FILES</p>
                {% endif %}
        </div>

views.py

def index(request):  
    recent_files = FileDescription.objects.all()

    context_instance=RequestContext(request)
    return render_to_response('index.html', 
        {'recent_files':recent_files,},
        context_instance,
        )

MySQL for FileDescription:

mysql> SELECT * FROM school_filedescription;
+----+------------+--------------+-----------+------------------+-----------+------------------+---------------------+---------------------+-----------------------------+
| id | subject_id | subject_name | file_type | file_uploaded_by | file_name | file_description | file_creation_time  | file_modified_time  | image                       |
+----+------------+--------------+-----------+------------------+-----------+------------------+---------------------+---------------------+-----------------------------+
|  1 |          1 | Math 140     | class     | rrr              | lalala    | lalala           | 2012-08-23 12:12:12 | 2012-08-23 12:12:12 | files/rrr/class/smart.jpg   |
|  2 |          1 | Math 140     | class     | rrr              | ,s,s,s    | s msms           | 2012-08-23 12:32:39 | 2012-08-23 12:32:39 | files/rrr/class/smart_1.jpg |
+----+------------+--------------+-----------+------------------+-----------+------------------+---------------------+---------------------+-----------------------------+
2 rows in set (0.00 sec)

但是,其他页面中的此代码可以正常工作

其他页面:

{% extends "base.html" %}
{% block main-menu %}
    <div class="contentarea">       
        <img src="{{ MEDIA_URL }}{{ picture.image }}"/>
    </div>
{% endblock %}

1 个答案:

答案 0 :(得分:1)

尝试将最近的文件参数添加到请求上下文实例中,如下所示:

context_instance = RequestContext(request, {
  'recent_files': recent_files
})

然后像这样调用请求......

return render_to_response('index.html', context_instance = context_instance)