需要一些建议来使用rebase和/或include。
为了使用可变菜单系统构建灵活的概念,我需要将'menuY.tpl'模板插入到不同的'mainX.tpl'页面中。
听起来很简单,但不仅仅是页面需要
thisTemplate = template('mainX', keys)
但菜单还需要更改菜单键
thisMenu = template('menuY', menukeys)
如何定义不同的指令?
蟒
@app.route('/doit')
def week():
...some code here to load keys etc ...
thisTemplate = template('mainX', keys)
return thisTemplate
mainX.tpl with
<body>
% insert ('menuY', rv)
<section class="container">
<p>{{param1}}</p>
some html code for the main page
</section>
</body>
menuY.tpl 只有像这样的菜单代码的html代码
<div id="hambgMenu">
<a href="/">Home - {{titleY}}</a>
<a href="/week">{{titleZ}}</a>
</div>
这不起作用,在 mainX.tpl 行,%insert python说:
NameError: name 'insert' is not defined
变量(titleY,titleZ)如何传递给' menuY '?上面的编码没有“rv”的参考。
答案 0 :(得分:0)
此处描述了解决方案How to pass html directly to template ...非常简单,只需添加!到模板参考。
我在Python上做了一些进一步的步骤:
@app.route('/doit')
def doit():
page = insertTPL('mainX', keys, 'menuY', menukeys, 'menuTag')
return page
..使用 menuTag 声明如下:
所以 mainX.tpl 变为
<body>
{{!menuTag}}
<section class="container">
<p>{{param1}}</p>
some html code for the main page
</section>
</body>
上面提到的 insertTPL python函数有:
def insertTPL(tpl, keys, menu, menukeys, menuTag):
subtpl = template(menu, menukeys)
rv = combineKeys(keys, {menuTag:subtpl}) # combine the menu code with other keys!
return template(tpl, rv)
def combineKeys(rv1, rv2):
try:
keys = {key: value for (key, value) in (rv1.items() + rv2.items())}
except:
keys = rv1
return keys