1.定义模板:
使用name属性作为模板的名字,然后再<template>内定义代码片段;
2.使用模板:
使用is属性声明使用的模板,然后将模板需要的data传入
<template is="msgItem" data="{{...item}}"/>
Page({
data: {
item: {
index: 0,
msg: 'this is a template',
time: '2016-09-15'
}
}
})
is 属性可以使用 Mustache 语法,来动态决定具体需要渲染哪个模板:
<template is="{{item % 2 == 0 ? 'even' : 'odd'}}"/>
模板的作用域:
模板拥有自己的作用域,只能使用data传入的数据以及模板定义文件中定义的<wxs />模板