Chameleon
我在模板中有以下代码:
<span tal:repeat="menu view.site_menu">
<tal:block tal:condition="menu.current">
<span>${menu.title}</span>
</tal:block>
<tal:block tal:condition="not menu.current">
<span><a href="/${menu.href}">${menu.title}</a></span>
</tal:block>
<tal:block tal:condition="not repeat/menu/end">
<span> | </span>
</tal:block>
</span>
当我尝试渲染此页面时,出现以下错误:
TypeError: unsupported operand type(s) for /: 'RepeatDict' and 'dict'
- Expression: "not repeat/menu/end"
...
谁能看到我在这里做错了什么?