web2py PDF - 我将该代码放在哪里?

发布于 2024-10-31 17:33:29 字数 256 浏览 2 评论 0原文

http://code.google.com/p/pyfpdf/wiki/Web2Py#Sample_Table_Listing

这是我第一次使用 web2py,我使用它是因为示例代码正是我项目的一部分所需要的。

我的问题是我不知道该代码放在哪里。我正在使用谷歌应用程序引擎。

http://code.google.com/p/pyfpdf/wiki/Web2Py#Sample_Table_Listing

This would be my first time using web2py, I'm using it because the example code is exactly what I need for part of a project.

My problem is I have no idea where to put this code. I'm using Google App Engine.

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

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

发布评论

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

评论(1

旧人九事 2024-11-07 17:33:29

要了解将该代码放在哪里,您至少需要对 web2py 应用程序的结构有基本的了解。我建议至少查看本书的概述章节

显示的函数定义(即 report()listing()invoice())将放入应用程序的控制器文件中。 '/controllers' 文件夹(脚手架应用程序包含一个 'default.py' 控制器文件,尽管您可以重命名该文件或创建新的控制器文件)。对 db.define_table 的调用通常会进入应用程序的“/models”文件夹中的模型文件(脚手架应用程序包含一个“db.py”模型文件,不过,您可以将其重命名或创建一个新的模型文件)。

请注意,邮件列表上最近有一个关于让 pyfpdf 在 GAE 上运行< /a>.

To understand where to put that code, you'll need at least a basic understanding of how web2py applications are structured. I recommend at least looking at the Overview chapter of the book.

The function definitions shown (i.e., report(), listing(), and invoice()) would go in a controller file in your applications's '/controllers' folder (the scaffolding application includes a 'default.py' controller file, though you could rename that or create a new controller file). The calls to db.define_table would typically go in a model file in your application's '/models' folder (the scaffolding application includes a 'db.py' model file, though again, you could rename that or create a new model file).

Note, there was a recent discussion on the mailing list regarding getting pyfpdf to work on GAE.

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