码迷,mamicode.com
首页 > 微信 > 详细

微信小程序视图层WXML_模板

时间:2018-07-05 19:56:49      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:pre   视图   name   script   ref   渲染   需要   href   mustache   

微信小程序视图层WXML_小程序模板


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

定义微信小程序的模板


使用name属性,作为微信小程序模板的名字。然后在<template/>内定义代码片段,如:

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

使用微信小程序模板


使用is属性,声明需要的使用微信小程序的的模板,然后将模板所需要的data传入,如:

<template is="msgItem" data="{{...item}}"/>
Page({
  data: {
    item: {
      index: 0,
      msg: ‘this is a template‘,
      time: ‘2016-09-15‘
    }
  }
})

is属性可以使用Mustache语法,来动态决定具体需要渲染哪个模板:

<template name="odd">
  <view> odd </view>
</template>
<template name="even">
  <view> even </view>
</template>

<block wx:for="{{[1, 2, 3, 4, 5]}}">
    <template is="{{item % 2 == 0 ? ‘even‘ : ‘odd‘}}"/>
</block>

微信小程序模板的作用域

微信小程序模板拥有自己的作用域,只能使用data传入的数据。

微信小程序视图层WXML_模板

标签:pre   视图   name   script   ref   渲染   需要   href   mustache   

原文地址:https://www.cnblogs.com/lanshu/p/9269831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!