web.py:将初始化/全局变量传递给处理程序类?
我正在尝试将 web.py 与 Tokyo Cabinet / pytc 一起使用,并且需要将数据库句柄(与 tokyo Cabinet 的连接)传递给我的处理程序类,以便它们可以与 tokyo Cabinet 进行通信。
有没有办法将处理程序传递给处理程序类的 init 函数? 或者我应该将句柄放入 globals() 中? 什么是 globals() 以及如何使用它?
I'm attempting to use web.py with Tokyo Cabinet / pytc and need to pass the db handle (the connection to tokyo cabinet) to my handler classes so they can talk to tokyo cabinet.
Is there a way to pass the handler to the handler class's init function? Or should I be putting the handle in globals() ? What is globals() and how do you use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是添加一个加载钩子(此处对 sqlalchemy 进行了描述)。 定义一个连接到 Tokyo Cabinet 的函数,并将生成的 db 对象作为 .orm 属性添加到 web.ctx,该属性在控制器内始终可用。
The best way would be to add a load hook (described here for sqlalchemy). Define a function that connects to Tokyo Cabinet and adds the resulting db object as an .orm attribute to web.ctx, which is always available inside the controller.