Genshi - 如何打印范围内的所有变量
很简单,我想打印出 genshi 模板范围内的所有变量,作为调试和发现措施。 有办法做到吗?
Quite simply I'd like to print out all variables that are in scope in my genshi template, as a debugging and discovery measure. Is there a way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准Python函数 locals() (返回一个字典)对我有用。 我使用的是 Genshi 0.5.1,正如您将看到的,所有内容似乎都在
__data__
中。The standard Python function locals() (which returns a dict) works for me. I'm using Genshi 0.5.1, and as you'll see, everything seems to be in
__data__
.