Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どういうわけか%def参照を使用する方法はありますか?基本的な考え方は次のとおりです。
% if condition_a: % func = %def_a % elif condition_b: % func = %def_b ... etc ... ${func( params )}
はいこのように:
% if condition_a: <% func = def_a %> % elif condition_b: <% func = def_b %> % endif ${func( params )}
@timmy:どういう意味かわかりません、多分これ?
<% func = some_dict[key] %> ${func( params )}
Pythonコードを中に入れることができます<% .. %>。makoドキュメントを参照してください。
<% .. %>