首页 > 微信应用  > 

微信小程序template模板引用实例详解

微信小程序template模板引用实例详解
​本文主要和大家介绍微信小程序视图template模板引用的实例详解的相关资料,希望通过本文能帮助到大家,需要的朋友可以参考下,希望能帮助到大家。

本文主要和大家介绍微信小程序视图template模板引用的实例详解的相关资料,希望通过本文能帮助到大家,需要的朋友可以参考下,希望能帮助到大家。

微信小程序视图template模板引用的实例详解

WXML 提供两种文件引用方式import和include。

include可以将目标文件除了的整个代码引入,相当于是拷贝到include位置

temlate.wxml

<template name="tmp_data" > <view class="content"> <!-- 头像 --> <view class="author-date"> <image src="{{item.header_url}}" class="author"></image> <text class="date">{{item.date}}{{idx}}</text> </view> <!-- 标题内容 --> <text class="title">{{item.title}}</text> <image class="image" src="{{item.image_url}}"></image> <text class="article-content">{{item.content}}</text> <view > <image class="article-images" src="../../images/icon/chat.png"></image> <text class="article-text">66</text> <image class="article-images" src="../../images/icon/view.png"></image> <text class="article-text">88</text> </view> </view></template>

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