微信小程序第七天WXML语法之模板用法

时间:2020-06-02 09:19:18   收藏:0   阅读:83

    定义模板WXML提供模板(template),可以在模板中定义代码片段,然后在不同的地方调用。

1,定义模板
使用 name 属性,作为模板的名字。然后在<template/>内定义代码片段

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

2,使用模板

使用 is 属性,声明需要的使用的模板,然后将模板所需要的 data 传入

<template is="msgItem" data="{{...item}}"/>

Page({

  data: {

    item: {

      index: 0,

      msg: ‘www.cnmibee.com‘,

      time: ‘2016-09-15‘

    }

  }

 

})

 

使用模板

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!