摘要: wx.login({ success(res) { if (res.code) { let code = res.code let appid = "wxe6f1a9f821d5c821" let secret = "a47225a7bfaeb8a47839969c80a59a6f" //发起网络请 阅读全文
posted @ 2020-08-17 18:26 lzhflzjx 阅读(438) 评论(0) 推荐(0)
摘要: const innerAudioContext = wx.createInnerAudioContext() //创建实例 innerAudioContext.autoplay = true //是否自动 innerAudioContext.loop = true //是否循环 innerAudio 阅读全文
posted @ 2020-08-17 14:49 lzhflzjx 阅读(631) 评论(0) 推荐(0)
摘要: 微信小程序里的定时器 clearTimeout(timerName) var timerName = setTimeout(function() { that.getParkList() }, 3000) 微信小程序里的循环定时器 var that = this; var times = 0 let 阅读全文
posted @ 2020-08-17 14:45 lzhflzjx 阅读(165) 评论(0) 推荐(0)