代码.py:
true_var = True
return render.edit(some)
编辑.html:
$var true_in_layout: $true_var
布局.html:
$def with(ctx):
$if ctx.true_in_layout == True:
$#pass
问题是如果我想判断,我必须在 layout.htm 中使用“True”:
$if ctx.true_in_layout == 'True':
"this is ok"
这里发生了什么 ?如果在布局模板中对用户 True 有满意的方式?