首页 > 微信应用  > 

微信小程序template模板详解

微信小程序template模板详解
微信小程序中提供了template使用,即相同的板块可以进行代码互用,如下方的效果图,就可以用template。​本文主要介绍了微信小程序template模板使用的相关资料,希望通过本文能帮助到大家,让大家理解掌握这样的功能,需要的朋友可以参考下。

微信小程序中提供了template使用,即相同的板块可以进行代码互用,如下方的效果图,就可以用template。本文主要介绍了微信小程序template模板使用的相关资料,希望通过本文能帮助到大家,让大家理解掌握这样的功能,需要的朋友可以参考下。

微信小程序template模板使用

效果图

一、模板定义

模板最重要的是模板的名称,即""

以下是实例模板代码

<template name="postItem"> <view class=&#39;post-container&#39;> <view class=&#39;post-author-date&#39;> <image class=&#39;post-author&#39; src=&#39;{{avatar}}&#39;></image> <text class=&#39;post-date&#39;>{{date}}</text> </view> <text class=&#39;post-title&#39;>{{title}}</text> <image class=&#39;post-image&#39; src=&#39;{{imgSrc}}&#39;></image> <text class=&#39;post-content&#39;>{{content}}</text> <view class=&#39;post-like&#39;> <image class=&#39;post-like-image&#39; src=&#39;/images/icon/chat.png&#39;></image> <text class=&#39;post-link-text&#39;>{{collection}}</text> <image class=&#39;post-like-image&#39; src=&#39;/images/icon/view.png&#39;></image> <text class=&#39;post-link-text&#39;>{{reading}}</text> </view> </view></template>

微信小程序template模板详解由讯客互联微信应用栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“微信小程序template模板详解