使用以“_”开头的全局名称在 Chameleon 模板引擎中
在将 chameleon 模板引擎升级到版本 2 时,我遇到了如下错误:
NameError: global name '_c' is not defined
其中 '_c' 在模板中用作变量,如:
tal:content="_c(item['category']"
在 chameleon 1.2 中一切正常。
有没有什么方法可以使其工作而不更改模板中以“_”开头的所有名称?
While upgrading chameleon template engine to version 2 , I've got errors like:
NameError: global name '_c' is not defined
where '_c' is used as a variable in template like:
tal:content="_c(item['category']"
in chameleon 1.2 everything was ok.
Is there any way to make it working without changing all names starting from "_" in templates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那是一个错误。
新版本的变色龙修复了这个问题。
That was a bug.
New versions of chameleon fix this.