怎么在微信小程序中使用自定义模版
作者
怎么在微信小程序中使用自定义模版?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
1、新建一个wxml(为测试方便,这里将wxml文件建立在home目录下)
/home/home/botmenu.wxml:
<templatename="bottommenu"> <viewclass="bottomposition"> <navigatorclass="item_info"url="../home/home"> <imagesrc="../img/sy.png"></image> <text>首页</text> </navigator> <navigatorclass="item_info"url="/pages/home/home"> <imagesrc="../img/xx.png"></image> <text>消息</text> </navigator> <navigatorclass="item_info"url="/pages/home/home"> <imagesrc="../img/lz.png"></image> <text>工具</text> </navigator> <navigatorclass="item_info"url="/pages/home/home"> <imagesrc="../img/wo.png"></image> <text>我</text> </navigator> </view> </template>
2、新建wxss
/home/home/botmenu.wxss:
.bottomposition{ width:100%; height:10%; position:fixed; overflow:hidden; left:0; top:90%; z-index:1100; display:flex; border-top:1rpxsolid#dadada; } .item_info{ width:25%; height:100%; display:flex; align-items:center; flex-direction:column; justify-content:center; } .item_infoimage{ width:20px; height:20px; } .item_infotext{ margin-top:5px; font-size:12px; } .infolist{ margin:10px; padding:010px; font-size:12px; }
3、页面引用
<importsrc="../home/home.wxml"/> <viewclass="info"> <templateis="bottommenu"></template> </view>
4、页面样式引用
@import"../home/home.wxss";
5、index.js中的data数据:
data:{ tool_list:[{ name:"在线JavaScript代码美化、格式化工具", url:"http://tools.jb51.net/code/js" },{ name:"json代码在线格式化/美化/压缩/编辑/转换工具", url:"http://tools.jb51.net/code/jsoncodeformat" },{ name:"中文繁体字简体字转换(繁简转换)工具", url:"http://tools.jb51.net/transcoding/convertzh" },{ name:"正则表达式在线生成工具", url:"http://tools.jb51.net/regex/create_reg" },{ name:"XML代码在线格式化美化工具", url:"http://tools.jb51.net/code/xmlcodeformat" },{ name:"在线科学计算器", url:"http://tools.jb51.net/jisuanqi/jsqkexue" },{ name:"BASE64编码解码工具", url:"http://tools.jb51.net/transcoding/base64" }] },
6、index.wxml
<!--index.wxml--> <viewclass='userinfo'>恰卡编程网在线工具</view> <viewwx:for="{{tool_list}}"class="infolist"> <text>{{item.name}}-{{item.url}}</text> </view> <importsrc="../home/home.wxml"/> <viewclass="info"> <templateis="bottommenu"></template> </view>
关于怎么在微信小程序中使用自定义模版问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注恰卡编程网行业资讯频道了解更多相关知识。
目录
推荐阅读
-
小程序时代,珠宝品牌如何拥抱微信生态
-
微信小程序如何实现走马灯式抽奖
-
微信小程序怎么实现tabBar底部导航
-
微信小程序怎么实现前台循环数据绑定
微信小程序怎么实现前台循环数据绑定本文小编为大家详细介绍“微信小程...
-
微信小程序中怎么实现swiper组件构建轮播图
-
微信小程序怎么授权获取用户详细信息
-
微信小程序如何使用蓝牙链接
微信小程序如何使用蓝牙链接这篇文章主要介绍“微信小程序如何使用蓝牙...
-
微信小程序怎么实现本地缓存数据增删改查功能
微信小程序怎么实现本地缓存数据增删改查功能这篇文章主要介绍“微信小...
-
微信小程序中怎么实现GET请求
-
微信小程序怎么实现下拉刷新界面
微信小程序怎么实现下拉刷新界面这篇文章主要介绍“微信小程序怎么实现...
0 条评论
本站已关闭游客评论,请登录或者注册后再评论吧~