Appengine - 报告实验室 PDF

发布于 2024-09-16 21:59:21 字数 152 浏览 3 评论 0原文

我正在使用 Google appengine,并希望使用 reportlab 生成 PDF。 该应用程序运行良好,可以生成诸如“Hello World”之类的 PDF,仅此而已。 但我想要的是从表单中获取用户输入的数据并动态生成 PDF。

谁能分享一段代码吗?我将不胜感激。

I'm using Google appengine and want to generate a PDF with reportlab.
The application works well and can generate PDF's like 'Hello World' and little else.
But what I want is to fetch data from a form with the data that the user entered and generate PDF dynamically.

Anyone can share a piece of code? I would be grateful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美羊羊 2024-09-23 21:59:21

我假设你使用 webapp 框架。

import cgi

from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class MainPage(webapp.RequestHandler):
    def get(self):
        self.response.out.write("""
          <html>
            <body>
              <form action="/makepdf" method="post">
                <div><textarea name="content" rows="3" cols="60"></textarea></div>
                <div><input type="submit" value="Make a PDF for me"></div>
              </form>
            </body>
          </html>""")


class MakePDF(webapp.RequestHandler):
    def post(self):
        # now here you can make your PDF like you did for the "Hello world" one
        # and you can access the entered data like this: self.request.get('content')

application = webapp.WSGIApplication(
                                     [('/', MainPage),
                                      ('/makepdf', MakePDF)],
                                     debug=True)

def main():
    run_wsgi_app(application)

if __name__ == "__main__":
    main()

I assume you use the webapp framework.

import cgi

from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class MainPage(webapp.RequestHandler):
    def get(self):
        self.response.out.write("""
          <html>
            <body>
              <form action="/makepdf" method="post">
                <div><textarea name="content" rows="3" cols="60"></textarea></div>
                <div><input type="submit" value="Make a PDF for me"></div>
              </form>
            </body>
          </html>""")


class MakePDF(webapp.RequestHandler):
    def post(self):
        # now here you can make your PDF like you did for the "Hello world" one
        # and you can access the entered data like this: self.request.get('content')

application = webapp.WSGIApplication(
                                     [('/', MainPage),
                                      ('/makepdf', MakePDF)],
                                     debug=True)

def main():
    run_wsgi_app(application)

if __name__ == "__main__":
    main()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文