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.
“render._keywords['globals']['render'] = render”在 web.py 骨架代码中是什么意思? http://webpy.org/skeleton/0.3
It means that render will be accesible inside templates to be able to render nested templates.
render
It is then used in templates/listing.html to render item template
$def with (items) $for item in items: $:render.item(item)