微信小程序-模版

2019-06-12  本文已影响0人  OrochiZ

官方文档:https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/template.html

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

1.定义模板
<template name="msgItem">
  <view>
    <text> {{index}}: {{msg}} </text>
    <text> Time: {{time}} </text>
  </view>
</template>
2.调用模版
<template is="msgItem" data="{{...item}}"/>
<import src="" />

在wxss文件中引入对应的wxss文件

@import "../../common.wxss";
上一篇下一篇

猜你喜欢

热点阅读