随笔分类 -  微信小程序

摘要:onLoad: /** * 生命周期函数--监听页面加载 */ // 打开当前页面就执行,并且只执行一次,从其他页面跳过来时不会执行 // 常用作列表页跳转详情页,options接受参数 onLoad: function (options) { wx.showToast({ title: '成功', 阅读全文
posted @ 2020-11-12 12:02 RainstormDy 阅读(384) 评论(0) 推荐(0)
摘要:跳转页面方法1:wxml文件中跳转 <navigator url="/pages/index2/index2" hover-class="navigator-hover">跳转到新页面</navigator> 跳转页面方法2:js文件中跳转 // 跳转页面 nav:function(){ wx.na 阅读全文
posted @ 2020-11-08 20:30 RainstormDy 阅读(96) 评论(0) 推荐(0)
摘要:轮播图功能 //wxml文件 <swiper class="swiper" indicator-dots="true" autoplay="false" circular="false" interval="3000" duration="1000"> <block wx:for="{{banner 阅读全文
posted @ 2020-10-21 22:59 RainstormDy 阅读(103) 评论(0) 推荐(0)