小程序web-view缓存的问题
摘要:关于web-view缓存,微信官方似乎也没给提供什么通用又好用的方案出来,记录一下自己平时清除缓存的方式1.从微信小程序列表中删除小程序 2.web-view的地址加上时间戳 3.找的别人的方法,在onShow中手动调用onLoad 小程序的webview缓存机制会让页面不走onLoad(),但是会
阅读全文
css制作一个音频声波效果
摘要:1.template代码 <view class="voice-image"> <view class="lines"> <text class="hr hr1" style="{{lineAnimation?'animation:liner .5s -1s ease-in-out alternat
阅读全文
小程序中实现录音功能(按住录制上滑取消)
摘要:1.template文本,提供一个按住录制的按钮 <view class="tip-touchmove" wx:if="{{showCancelType==2}}"> 上滑取消</view><view class="tip-touchmove" wx:if="{{showCancelType==3}
阅读全文
小程序中开启录音功能(使用wepy)
摘要:1.检查是否获取到录音权限 获取录音权限 onLoad(options, data) { this.judgeRecord().then(res=>{ if(res==true) { this.recordInit = true; this.$apply(); } }) this.$apply();
阅读全文