Home > Article > WeChat Applet > In-depth analysis of how to use mini program templates
This article will give you a detailed understanding of the usage of the mini program template. I hope it will be helpful to you!
#WXML provides templates, in which code snippets can be defined and then called in different places. [Related learning recommendations: 小program development tutorial]
You will gain
How to use the small program template
Handling of mini program template data and events
Some precautions and optimization of mini program templates
Create a template folder in the page. You can use the mini program development tool [New Page] to quickly create files
Note: When calling the template, only the wxml and wxss files work, and the JS files in the template do not work. The logic in the template must be processed in the file called by .
Create files can be designed according to your own project, this is not always the case
In<template></template>
Define code snippets within, using the name attribute as the name of the template.
<template name="msgItem"> <view> <text class="info">这是一个msg模板</text> </view> </template>
To use templates in wxml, there are two steps
1), declaration, key import tag
2), use, Key is attribute
<!-- index.wxml --> <!-- 声明需要使用的模板文件 --> <import src ="../template/template.wxml"/> <!--使用--> <template is="msgItem"/>
The name of is here is consistent with the name of the template
If the template has its own wxss, such as Our template.wxss
file needs to be imported into the file that calls the template (such as index.wxss
in the example), otherwise it will not take effect
/**index.wxss**/ @import "../template/template.wxss";
Summary:
- wxss import into wxss
- wxml import into wxml
- js is invalid
[Calling wxml] Pass the value to the template through data
<!-- index.wxml --> <template is="msgItem" data="{{...item}}"/>
item is defined in the calling js
<!-- index.js --> Page({ data: { item: { title: '模板', msg: 'this is a template', } } })
is used directly in the template
<!-- template.wxml --> <template name="msgItem"> <view> <text class="info"> {{title}}: {{msg}} </text> </view> </template>
If multiple parameters are passed, separate them with commas
<template is="msgItem" data="{{data1, data2}}"/>
Used by the template It is an event in [the js file that calls the template].
template.js
will not take effect##
<!--template.wxml--> <template name="msgItem"> <view> <text class="info" bindtap="handleTap"> {{title}}: {{msg}} </text> </view> </template>rrreeOptimization template eventIf it is a method common to the template, the method must be written in each called file. There will be a lot of repeated code. We can improve it as follows. (Although the
template template cannot directly use its own js, we can write the methods uniformly in the
template.js file, and then introduce it into the js file that uses the template.)
<!-- index.js --> handleTap() { console.log('template 模版 click') },Just import it where you need to use it
<!-- template.js --> const template = { handleTap() { console.log('template 模版 click') } } export default template;About data transfer in js files In
template.js you can directly get the entire data of the
index.js file
##template Similarities and differences between templates and Component components
The same pointsare all to achieve code reuse
template template
: lightweight, mainly for display, no configuration file (.json) and Business logic file (.js), so the variable references and business logic events in the template template need to be defined in the [page js referencing the template] file;
Component component: Yes Your own business logic consists of 4 files, similar to the page, but the js files and json files are different from the page.
Select
// index.js import template from '../template/template'; Page({ handleTap:template.handleTap })Reference: WeChat Mini Program template
https://developers.weixin.qq.com/miniprogram/dev/reference /wxml/template.html
For more programming related knowledge, please visit: Programming Video! !
The above is the detailed content of In-depth analysis of how to use mini program templates. For more information, please follow other related articles on the PHP Chinese website!