在 mako python 中获取 %def 引用
有没有办法以某种方式使用 %def 引用,基本思想是:
% if condition_a:
% func = %def_a
% elif condition_b:
% func = %def_b
... etc ...
${func( params )}
is there a way to use %def references somehow, basic idea being:
% if condition_a:
% func = %def_a
% elif condition_b:
% func = %def_b
... etc ...
${func( params )}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,就像这样:
@timmy:我不知道你的意思,也许是这个?
您可以将任何 Python 代码放入
<% .. %>
中,请参阅 mako 文档!Yes like this:
@timmy: I have no idea what you mean, maybe this?
You can put any Python code inside
<% .. %>
, see the mako docs!