web2py PDF - 我将该代码放在哪里?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要了解将该代码放在哪里,您至少需要对 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()
, andinvoice()
) 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 todb.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.