gpt4 book ai didi

django - 如何将 Reportlab 与基于 Django 类的 View 结合起来?

转载 作者:行者123 更新时间:2023-12-02 00:23:47 25 4
gpt4 key购买 nike

我正在尝试将我的 HTML 转换为 PDF。我看了这个教程,https://www.codingforentrepreneurs.com/blog/html-template-to-pdf-in-django/而且我能够成功地获得使用硬编码值的教程。问题是......我不知道如何将我的模型及其属性动态合并到这个例子中。

这是我遵循的步骤...

首先,我使用以下版本将 reportlab 安装到我的环境中......

pip install --pre xhtml2pdf 

这有效...

然后我按照说明在我的项目中添加了一个 utils.py 文件。

然后我将这段代码复制到我的 utils.py 文件中...

from io import BytesIO
from django.http import HttpResponse
from django.template.loader import get_template

from xhtml2pdf import pisa

def render_to_pdf(template_src, context_dict={}):
template = get_template(template_src)
html = template.render(context_dict)
result = BytesIO()
pdf = pisa.pisaDocument(BytesIO(html.encode("ISO-8859-1")), result)
if not pdf.err:
return HttpResponse(result.getvalue(), content_type='application/pdf')
return None

然后我创建了一个如下所示的 HTML 文件:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Title</title>
<style type="text/css">
body {
font-weight: 200;
font-size: 14px;
}
.header {
font-size: 20px;
font-weight: 100;
text-align: center;
color: #007cae;
}
.title {
font-size: 22px;
font-weight: 100;
/* text-align: right;*/
padding: 10px 20px 0px 20px;
}
.title span {
color: #007cae;
}
.details {
padding: 10px 20px 0px 20px;
text-align: left !important;
/*margin-left: 40%;*/
}
.hrItem {
border: none;
height: 1px;
/* Set the hr color */
color: #333; /* old IE */
background-color: #fff; /* Modern Browsers */
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='header'>
<p class='title'>Invoice # </p>
</div>
<div>
<div class='details'>
Bill to: {{ customer_name }} <br/>
Amount: {{ amount }} <br/>
Date:
<hr class='hrItem' />
</div>
</div>
</body>
</html>

我还创建了必要的 URL....

然后我创建了一个类似于下面定义的 View :

from django.http import HttpResponse
from django.views.generic import View

from yourproject.utils import render_to_pdf #created in step 4

class GeneratePdf(View):
def get(self, request, *args, **kwargs):
data = {
'today': datetime.date.today(),
'amount': 39.99,
'customer_name': 'Cooper Mann',
'order_id': 1233434,
}
pdf = render_to_pdf('pdf/invoice.html', data)
return HttpResponse(pdf, content_type='application/pdf')

当我单击指向该 View 的链接时...输出显示就像教程所说...

但是,如果我试图让我的模型以这种格式显示...我不知道该怎么做。我尝试了 DetailView ....然后我得到了数据但没有 PDF ......我也搜索了许多其他地方但我似乎找不到一个可以让我动态获取我的模型并拉动的例子根据需要在属性中...在此先感谢您提供任何帮助或指示。

最佳答案

如果你想使用DetailView,我想你可以这样做:

class SomeDetailView(DetailView):
model = YourModel
template_name = 'pdf/invoice.html'

def get_context_data(self, **kwargs):
context = super(SomeDetailView, self).get_context_data(**kwargs)
# add extra context if needed
return context

def render_to_response(self, context, **kwargs):
pdf = render_to_pdf(self.template_name, context)
return HttpResponse(pdf, content_type='application/pdf')

在这里,我覆盖了 render_to_response 以覆盖 DetailView 的默认响应以返回 PDF 响应。在这里,传入的上下文来自 get_context_data。在 get_context_data 中,您可以根据需要添加任何额外的上下文。

关于django - 如何将 Reportlab 与基于 Django 类的 View 结合起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54565679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com