是否有任何人知道一个现有的图书馆来检查模板中的内容?
目前,我最后认为:
show_me = dir(the_deets_on_this_object)
raise ValueError()
Then I can inspect the value of show_me in the debugger stack trace.
然而,这确实是令人怀疑的。 我很爱能够在模版中进行这一检查,例如与印刷机在实验室进行的检查。
{% load development_show_me %}
{{the_deets_on_this_object|show_them_to_me}}
我知道,这在django标准模板图书馆中确实存在,但我希望有人已经写过这一模板过滤器,因此我可以乐意使用该模板。
行为:
- Checks for settings.DEBUG and raises an error that isn t trapped if it is false
- wraps the output in < pre >
如果我需要的话,我就要写这封信,但希望其他人已经这样做。