const mixinafEfan::EfanTemplate
afEfan::EfanTemplate
A compiled efan template, ready for rendering!
- render
virtual Str render(Obj? ctx, |Obj?? bodyFunc := null)The main render method.
The
bodyFuncis executed whenrenderBody()is called. Use it when enclosing content in Layout templates. Example:... <%= ctx.layout.render(ctx.layoutCtx) { %> ... my body content ... <% } %> ...ctxmust be provided. This prevents you from accidently passing inbodyFuncas thectx. Example:layout.render() { ... }// --> WRONG!layout.render(null) { ... }// --> CORRECT!The signature for
bodyFuncis actually|->|? bodyFunc- see source for an explanation of why|Obj?|?is used.- renderBody
virtual Str renderBody()Renders the body of the enclosing efan template. Example, a simple
layout.htmlmay be defined as:<html> <head> <title><%= ctx.pageTitle %> </html> <body> <%= renderBody() %> </html>- templateMeta
abstract EfanTemplateMeta templateMetaMeta data about this efan template.