你如何从 REPL 渲染一个 Zope DTML 说没有文件夹对象或任何类似的测试用例?
我有一个名为 /tmp/tmp.dtml 的文件,其内容如下:
<dtml-var test>
我可以做到这一点:
from AccessControl import ImplC as impl
from App.special_dtml import DTMLFile
#globals has test variable define if that helps?
dtml_page = DTMLFile('/tmp/tmp',globals())
dtml_page() give "None\n"
如何将正确的命名空间注入 DTMLFile 对象或在调用期间?