微信小程序 template使用

当你的项目需要多次使用同一个布局和样式的时候,您就可以考虑使用template(模板)来减少冗余代码。

很简单的例子

<template name=”firstTest”><view class=”BackView”>

<text>{{name}}</text>

</view>

</template>

在page中引入的时候

<import src=”../../view/new/new.wxml”/>

<template is=”firstTest” data=”{{…item}}”></template>

这是 item.name 就可以赋值给template中

同样 page中引入 css样式

@import “../../view/new/new.wxss”;

但是现在发现微信小程序有了

{

“component”: true,

“usingComponents”: {}

}

组件引用和模板引用 这个后面有机会探讨

本文为原创文章,转载请注明出处!