Home WeChat Applet Mini Program Development Detailed explanation and simple examples of WeChat Mini Program Template

Detailed explanation and simple examples of WeChat Mini Program Template

Jan 10, 2017 am 10:11 AM

WeChat Mini Program Template

Template

WXML provides a template (Template), in which code snippets can be defined and then used in different places. The format and data can be guaranteed to be the same.

1-Define the template

Use the `` tag to define the template, name the template name tempName, and assign the value to the attribute name . Inside the tag, define the template structure. As follows:

<!-- template.wxml -->
<!--
  index: int
  msg: string
  time: string
-->
<template name="msgItem">
  <view>
  <text> {{index}}: {{msg}} </text>
  <text> Time: {{time}} </text>
 </view>
</template>
Copy after login

2-Use template

Use the