WXML provides a template that defines code snippets in the template and calls them in different places. Template
WXML provides a template that defines code snippets in the template and calls them in different places.
Define Template
Use the name attribute as the template name. Then Code snippets, such:
{{index}}: {{msg}}
Time: {{time}}
Use Template
Use the is attribute to declare the template to be used, and then pass the data required by the template, such:
Page({ data: { item: { index: 0, msg: 'this is a template', time: '2016-09-15' } } })
The is attribute can use the Mustache syntax to determine the template to be rendered during the runtime:
odd
even
Template scope
The template has its own scope and can only use the data passed in.
The above is the template content of the mini-program tutorial. For more information, see The PHP Chinese website (www.php.cn )!