重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

微信小程序中template模块的使用方法

时间:2020-09-07 15:00:09 作者:重庆seo小潘 来源:
本篇文章给大家带来的内容是关于微信小程序中template模块的使用方法,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。 WXML提供模板(template),可以在模板中定义代码片段,然后在不同的地方调用。 首先在pages目录下新建一个template目

本篇文章给大家带来的内容是关于微信小程序中template模块的使用方法,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

WXML提供模板(template),可以在模板中定义代码片段,然后在不同的地方调用。 首先在pages目录下新建一个template目录用来存放模板 模板怎么建呢? 模板只需要新建xxx.wxss和xxx.wxml这两个文件就可以了,其他两个.js和.json不需要 在template目录中新建list-template.wxml和list-template.wxss

list-template.wxml:<template name='listTmp'><view><view><image alt="微信小程序中template模块的使用方法" src='/images/avatar/0.png'></image><text>may 9 2018</text></view><text>火影村</text><image alt="微信小程序中template模块的使用方法" src='/images/detail/carousel/6.jpg'></image><text>火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火火</text><view><image alt="微信小程序中template模块的使用方法" src='/images/icon/view.png'></image><text>88</text><image alt="微信小程序中template模块的使用方法" src='/images/icon/star.png'></image><text>88</text></view></view></template>list-template.wxss:.tmpContainer{display: flex;flex-direction: column;}.avatar_date image{width: 60rpx;height: 60rpx;/* 把此元素放置在父元素的中部。就可以让图片与文字都在中间了 */vertical-align: middle;margin-right: 10rpx;}.avatar_date {padding: 10rpx;}.avatar_date text{font-size: 32rpx;}.company{margin-left: 10rpx;font-size: 36rpx;font-weight: 700;margin: 10rpx;}.contentImg{width: 100%;height: 460rpx;}.content{font-size: 32rpx;/* 段落首字母缩进两个字 */text-indent: 64rpx;}.collection_love image{width: 32rpx;height: 32rpx;vertical-align: middle;margin-right: 10rpx;}.collection_love text{font-size: 28rpx;margin-right: 10rpx;}在list.wxml中引入模板:<!-- 在头部引入,注意结尾别忘了/ --><import alt="微信小程序中template模块的使用方法" src='/pages/template/list-template.wxml'/>然后在你想用模板的地方引用 微信小程序中template模块的使用方法还要在list.wxss中像以下样子引入模板样式

微信小程序中template模块的使用方法

相关推荐:

php设计模式 Template Method (模板方法模式)

微信企业号开发之微信考勤Cookies的使用_javascript技巧

使用pdb模块调试Python程序实例以上就是微信小程序中template模块的使用方法的详细内容,更多请关注小潘博客其它相关文章!