Django xhtml2pdf'HttpResponse'没有缓冲接口

时间:2015-03-07 19:08:49

标签: python django httpresponse xhtml2pdf

我尝试用Django输出pdf进行一些测试。我使用与pip一起安装的xhtml2pdf项目。

我查看了一个将pdf发送到浏览器并成功的示例,但在尝试使用我的模板时,会出现错误。它写着:

'HttpResponse' does not have the buffer interface

我的观点代码是下一个:

def generate_pdf(request):

    from xhtml2pdf import pisa
    from person.views import alumn_list

    html = alumn_list(request, 12, 0) # This function returns a render('alumn_list.html)

    pdfFile = open(os.path.join(base.TEMPLATE_DIRS[0], 'test.pdf'), 'w+b')
    pisaStatus = pisa.CreatePDF(html, dest=pdfFile) # The errors happens here

    pdfFile.seek(0)
    pdf = pdfFile.read()
    pdfFile.close()
    return HttpResponse(pdf, content_type='application/pdf')

我的模板是下一个:

{% extends "alumns.html" %}
{% load i18n %}

{% block extra_css %}
    <style>
    @page {
        size: letter portrait;
        @frame header_frame {           /* Static frame */
            -pdf-frame-content: header_content;
            left: 50pt; width: 512pt; top: 50pt; height: 40pt;
        }
        @frame col1_frame {             /* Content frame 1 */
            left: 44pt; width: 445pt; top: 90pt; height: 632pt;
            text-align:center;
        }

        @frame footer_frame {           /* Static frame */
            -pdf-frame-content: footer_content;
            left: 50pt; width: 512pt; top: 772pt; height: 20pt;
        }
    }
    </style>
{% endblock extra_css %}

{% block title %}
    {% trans "Alumn list" %}
{% endblock title %}

{% block page_title %}
    {% trans "Alumn list" %}
{% endblock page_title %}

{% block content %}
    <table class="infoTable">
        {% csrf_token %}
        {% for index in "12" %}
        <caption {% ifequal index "2" %}align="bottom"{% endifequal%}>
            <a href="{{hrefs.0}}" class="pager">&lt;&lt; {% trans "Previous" %}</a>
            <a href="{{hrefs.1}}" class="pager">{% trans "Next" %} &gt;&gt;</a>
        </caption>
        {% endfor %}

        <thead>
            <th>{% trans "ID" %}</th>
            <th>{% trans "Name" %}</th>
        </thead>
    {% for alumn in alumnList %}
        <tr id="alumn{{alumn.alumnId}}">
            <td>{{ alumn.alumnId }}</td>
            <td><button class="profileAlumn" alumn_id="{{alumn.alumnId}}">{% trans "Profile" %}</button></td>
            <td><button class="deleteAlumn" alumn_id="{{alumn.alumnId}}">{% trans "Delete" %}</button></td>
        </tr>
    {% endfor %}
    </table>
{% endblock content %}

我不知道如何修补这个错误。我用Google搜索了这个错误,但只显示了三个不明确的结果页面,没有人参考HttpResponse。

请帮忙。我不知道自己做错了什么。

如果有人有一些链接可以帮助我,我可以学习如何从我的webapp中的每个呈现的HTML模板制作pdf。

提前感谢非常

1 个答案:

答案 0 :(得分:1)

alumn_list是一个观点。所以它返回一个HttpResponse对象。但是你需要将一个字节串传递给pisa.CreatePDF,这是响应的内容。所以你可以做到以下几点:

pisaStatus = pisa.CreatePDF(html.content, dest=pdfFile)