<legend id="h4sia"></legend><samp id="h4sia"></samp>
<sup id="h4sia"></sup>
<mark id="h4sia"><del id="h4sia"></del></mark>

<p id="h4sia"><td id="h4sia"></td></p><track id="h4sia"></track>

<delect id="h4sia"></delect>
  • <input id="h4sia"><address id="h4sia"></address>

    <menuitem id="h4sia"></menuitem>

    1. <blockquote id="h4sia"><rt id="h4sia"></rt></blockquote>
      <wbr id="h4sia">
    2. <meter id="h4sia"></meter>

      <th id="h4sia"><center id="h4sia"><delect id="h4sia"></delect></center></th>
    3. <dl id="h4sia"></dl>
    4. <rp id="h4sia"><option id="h4sia"></option></rp>

        0411-39943997
        工作时间:周一至周日 8:30-22:00
        技术文库
        Technical Library

        小程序视图层WXML中模板(template)

        标签: 小程序开发  访问: 20392018-01-26

        模板

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

        定义模板

        使用 name 属性,作为模板的名字。然后在内定义代码片段,如:

        
          
             {{index}}: {{msg}} 
             Time: {{time}} 
          

        使用模板

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

        Page({
          data: {
            item: {
              index: 0,
              msg: 'this is a template',
              time: '2016-09-15'
            }
          }
        })

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

        
           odd 
           even 
            

        模板的作用域

        模板拥有自己的作用域,只能使用 data 传入的数据以及模版定义文件中定义的  模块。


        Copyright© 2015 仟亿科技,All rights reserved.